summaryrefslogtreecommitdiff
path: root/Src/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/math.c')
-rw-r--r--Src/math.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/math.c b/Src/math.c
index aee318cfc..75f0106bb 100644
--- a/Src/math.c
+++ b/Src/math.c
@@ -357,6 +357,10 @@ zzlex(void)
yyval.u.l = zstrtol(++ptr, &ptr, lastbase = 16);
return NUM;
}
+ else if (idigit(*ptr) && (memchr(ptr, '.', strlen(ptr)) == NULL)) {
+ yyval.u.l = zstrtol(ptr, &ptr, lastbase = 8);
+ return NUM;
+ }
/* Fall through! */
default:
if (idigit(*--ptr) || *ptr == '.') {