pike.git/
src/
stralloc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2016-12-17
2016-12-17 13:04:21 by Martin Nilsson <nilsson@fastmail.com>
a577236f33f7f529a33349f6d7d0d000b2c8c774 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
Skip non-ascii whitespaces before floats as well.
3550:
s = nptr; /* Eat whitespace. */
-
while (
EXTRACT_PCHARP(s) <256 &&
wide_isspace(EXTRACT_PCHARP(s))) INC_PCHARP(s,1);
+
while (wide_isspace(EXTRACT_PCHARP(s))) INC_PCHARP(s,1);
/* Get the sign. */ sign = EXTRACT_PCHARP(s) == '-' ? -1 : 1;