diff scripts/plot/private/__axes_limits__.m @ 13744:eac43686d791 stable

maint: missing semicolon. * __axes_limits__.m: Missing semicolon.
author John W. Eaton <jwe@octave.org>
date Mon, 24 Oct 2011 16:14:14 -0400
parents f7af3834405c
children 72c96de7a403
line wrap: on
line diff
--- a/scripts/plot/private/__axes_limits__.m
+++ b/scripts/plot/private/__axes_limits__.m
@@ -45,7 +45,7 @@
         error ("%s: argument must be a 2 element vector", fcn);
       else
         if (arg(1) >= arg(2))
-          error ("%s: axis limits must be increasing", fcn)
+          error ("%s: axis limits must be increasing", fcn);
         else
           set (h, fcn, arg(:));
         endif