changeset 5920:bf4241378994

[project @ 2006-08-14 16:46:32 by jwe]
author jwe
date Mon, 14 Aug 2006 16:46:33 +0000
parents ceaf10a4743c
children 28e8abe7027e
files scripts/ChangeLog scripts/strings/str2double.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Aug 14 16:42:03 2006 +0000
+++ b/scripts/ChangeLog	Mon Aug 14 16:46:33 2006 +0000
@@ -1,3 +1,7 @@
+2006-08-14  John W. Eaton  <jwe@octave.org>
+
+	* strings/str2double.m: Fix missing semicolon.
+
 2006-07-27  Jim Peterson  <jpeterson@annapmicro.com>
 
 	* plot/plot3.m: Accept one complex or one real and one complex
--- a/scripts/strings/str2double.m	Mon Aug 14 16:42:03 2006 +0000
+++ b/scripts/strings/str2double.m	Mon Aug 14 16:46:33 2006 +0000
@@ -195,7 +195,7 @@
     ix = 1;
     ## while (ix < sl) & any(abs(s(ix))==[rdelim,cdelim]),
     while (ix < sl && CD(ix))
-      ix++
+      ix++;
     endwhile
     ta = ix;
     te = [];