diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-22 08:17:50 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-22 08:17:50 +0000 |
commit | 5a0fcee1aee3ca8e56ad51d4764c139ce0f0e1c5 (patch) | |
tree | 0484a8e60b4687b23bc4a82cbf6c90ddef032d92 /Src/math.c | |
parent | 44cd8ebe74451e0bb6fec83c723c168c4084d9b8 (diff) | |
download | zsh-5a0fcee1aee3ca8e56ad51d4764c139ce0f0e1c5.tar.gz zsh-5a0fcee1aee3ca8e56ad51d4764c139ce0f0e1c5.tar.xz zsh-5a0fcee1aee3ca8e56ad51d4764c139ce0f0e1c5.zip |
zsh-workers/8711
Diffstat (limited to 'Src/math.c')
-rw-r--r-- | Src/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/math.c b/Src/math.c index 7e4230c9b..1f073ba2e 100644 --- a/Src/math.c +++ b/Src/math.c @@ -367,7 +367,7 @@ zzlex(void) #ifdef USE_LOCALE setlocale(LC_NUMERIC, prev_locale); #endif - if (ptr == nptr || *nptr == '.' ) { + if (ptr == nptr || *nptr == '.') { zerr("bad floating point constant", NULL, 0); return EOI; } |