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
988c2f83
Commit
988c2f83
authored
Apr 28, 1994
by
Richard M. Stallman
Browse files
(read1): Allow `\C- ' and `\C-?'.
parent
fe8fd409
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/lread.c
src/lread.c
+6
-0
No files found.
src/lread.c
View file @
988c2f83
...
...
@@ -1217,6 +1217,12 @@ read1 (readcharfun)
}
else
{
/* Allow `\C- ' and `\C-?'. */
if
(
c
==
(
CHAR_CTL
|
' '
))
c
=
0
;
else
if
(
c
==
(
CHAR_CTL
|
'?'
))
c
=
127
;
if
(
c
&
CHAR_META
)
/* Move the meta bit to the right place for a string. */
c
=
(
c
&
~
CHAR_META
)
|
0x80
;
...
...
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