# HG changeset patch # User John W. Eaton # Date 1243632728 14400 # Node ID 38ad8c99d6a2ddcf4db4ccc854cdd54a1606969f # Parent 2ed8d2d92507c09791fddc491588846e72932283 __gnuplot_get_var__.m: insert missing semicolon diff -r 2ed8d2d92507 -r 38ad8c99d6a2 scripts/ChangeLog --- 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 + + * plot/__gnuplot_get_var__.m: Insert missing semicolon. + 2009-05-28 Ben Abbott * plot/__go_draw_axes__.m: Set x2range when xaxislocation=='top' and set diff -r 2ed8d2d92507 -r 38ad8c99d6a2 scripts/plot/__gnuplot_get_var__.m --- 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);