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
d3c00496
Commit
d3c00496
authored
Feb 25, 1999
by
Kenichi Handa
Browse files
(push_key_description): If enable-multibyte-characters
is nil and C is single byte, push C as is.
parent
91978d00
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/keymap.c
src/keymap.c
+3
-1
No files found.
src/keymap.c
View file @
d3c00496
...
...
@@ -1850,7 +1850,9 @@ push_key_description (c, p)
*
p
++
=
'P'
;
*
p
++
=
'C'
;
}
else
if
(
c
<
128
)
else
if
(
c
<
128
||
(
NILP
(
current_buffer
->
enable_multibyte_characters
)
&&
SINGLE_BYTE_CHAR_P
(
c
)))
*
p
++
=
c
;
else
{
...
...
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