changeset 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 50ef82665546
children 3c3b74677fa0 50ceb5c51271
files scripts/plot/private/__axes_limits__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/private/__axes_limits__.m	Mon Oct 24 16:12:58 2011 -0400
+++ b/scripts/plot/private/__axes_limits__.m	Mon Oct 24 16:14:14 2011 -0400
@@ -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