about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/math.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d69421dd..aeec83535 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-25  Peter Stephenson  <pws@csr.com>
+
+	* 17046: Src/math.c: OCTAL_ZEROES with a `0' on its own was
+	swallowing up too many characters.
+
 2002-04-25  Clint Adams  <clint@zsh.org>
 
 	* 17044: Completion/Unix/Command/_w3m: complete all files, not
diff --git a/Src/math.c b/Src/math.c
index 17796f244..e87a286fb 100644
--- a/Src/math.c
+++ b/Src/math.c
@@ -383,9 +383,10 @@ zzlex(void)
 		return NUM;
 	    }
 	    else if (isset(OCTALZEROES) &&
-		    (memchr(ptr, '.', strlen(ptr)) == NULL)) {
+		    (memchr(ptr, '.', strlen(ptr)) == NULL) &&
+		     idigit(*ptr)) {
 	        yyval.u.l = zstrtol(ptr, &ptr, lastbase = 8);
-	        return NUM;
+		return NUM;
 	    }
 	/* Fall through! */
 	default: