changeset 9283:38ad8c99d6a2

__gnuplot_get_var__.m: insert missing semicolon
author John W. Eaton <jwe@octave.org>
date Fri, 29 May 2009 17:32:08 -0400
parents 2ed8d2d92507
children 567e3e4ab74d
files scripts/ChangeLog scripts/plot/__gnuplot_get_var__.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu May 28 07:22:59 2009 -0400
+++ b/scripts/ChangeLog	Fri May 29 17:32:08 2009 -0400
@@ -1,3 +1,7 @@
+2009-05-29  John W. Eaton  <jwe@octave.org>
+
+	* plot/__gnuplot_get_var__.m: Insert missing semicolon.
+
 2009-05-28  Ben Abbott <bpabbott@mac.com>
 
 	* plot/__go_draw_axes__.m: Set x2range when xaxislocation=='top' and set
--- a/scripts/plot/__gnuplot_get_var__.m	Thu May 28 07:22:59 2009 -0400
+++ b/scripts/plot/__gnuplot_get_var__.m	Fri May 29 17:32:08 2009 -0400
@@ -128,7 +128,7 @@
       while (isempty (str))
         str = char (fread (istream)');
         if (! isempty (str))
-          str = regexp (str, "OCTAVE:.*", "match")
+          str = regexp (str, "OCTAVE:.*", "match");
           str = str{end}(8:end);
         endif
         fclear (istream);