Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
37579d7c
Commit
37579d7c
authored
Mar 31, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(isfloat_string): Permit trailing space.
parent
0bb083c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/lread.c
src/lread.c
+1
-1
No files found.
src/lread.c
View file @
37579d7c
...
...
@@ -1453,7 +1453,7 @@ isfloat_string (cp)
while
(
*
cp
>=
'0'
&&
*
cp
<=
'9'
)
cp
++
;
}
return
(
*
cp
==
0
return
((
(
*
cp
==
0
)
||
(
*
cp
==
' '
)
||
(
*
cp
==
'\t'
)
||
(
*
cp
==
'\n'
)
||
(
*
cp
==
'\r'
)
||
(
*
cp
==
'\f'
))
&&
(
state
==
(
LEAD_INT
|
DOT_CHAR
|
TRAIL_INT
)
||
state
==
(
DOT_CHAR
|
TRAIL_INT
)
||
state
==
(
LEAD_INT
|
E_CHAR
|
EXP_INT
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment