# HG changeset patch # User jwe # Date 1201649291 0 # Node ID 0c11c6907c38598bb520db164a734711e08809a4 # Parent 65f0a8ced9d2d0b411893cc47081603ee6935b3f [project @ 2008-01-29 23:28:10 by jwe] diff -r 65f0a8ced9d2 -r 0c11c6907c38 scripts/ChangeLog --- a/scripts/ChangeLog Mon Jan 28 22:44:46 2008 +0000 +++ b/scripts/ChangeLog Tue Jan 29 23:28:11 2008 +0000 @@ -1,4 +1,8 @@ -2008-01-28 Michael Goffioul +2008-01-29 John W. Eaton + + * strings/str2double.m: Delete unused variable FLAG_OCTAVE. + +2008-01-28 Michael Goffioul * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: Return the label handle, not the current axis handle. diff -r 65f0a8ced9d2 -r 0c11c6907c38 scripts/strings/str2double.m --- a/scripts/strings/str2double.m Mon Jan 28 22:44:46 2008 +0000 +++ b/scripts/strings/str2double.m Tue Jan 29 23:28:11 2008 +0000 @@ -81,8 +81,6 @@ function [num, status, strarray] = str2double (s, cdelim, rdelim, ddelim) - FLAG_OCTAVE = exist('OCTAVE_VERSION','builtin'); - ## digits, sign, exponent,NaN,Inf ## valid_char = '0123456789eE+-.nNaAiIfF'; @@ -114,7 +112,7 @@ endif if (nargin < 4) - ddelim = '.'; + ddelim = "."; elseif (length (ddelim) != 1) error ("decimal delimiter must be exactly one character"); endif