Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6069d957
Commit
6069d957
authored
Dec 15, 1994
by
Richard M. Stallman
Browse files
(readevalloop): Ignore ^M here.
parent
487d5fb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/lread.c
src/lread.c
+4
-1
No files found.
src/lread.c
View file @
6069d957
...
...
@@ -724,7 +724,10 @@ readevalloop (readcharfun, stream, sourcename, evalfun, printflag)
continue
;
}
if
(
c
<
0
)
break
;
if
(
c
==
' '
||
c
==
'\t'
||
c
==
'\n'
||
c
==
'\f'
)
continue
;
/* Ignore whitespace here, so we can detect eof. */
if
(
c
==
' '
||
c
==
'\t'
||
c
==
'\n'
||
c
==
'\f'
||
c
==
'\r'
)
continue
;
if
(
!
NILP
(
Vpurify_flag
)
&&
c
==
'('
)
{
...
...
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