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
28246d85
Commit
28246d85
authored
Jan 12, 1998
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(push_key_description): If C >= 128, always use octal representation.
parent
21846016
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/keymap.c
src/keymap.c
+2
-2
No files found.
src/keymap.c
View file @
28246d85
...
...
@@ -1637,7 +1637,7 @@ spaces are put between sequence elements, etc.")
for
(
i
=
0
;
i
<
XSTRING
(
keys
)
->
size
;
)
{
int
c
;
int
i_before
;
int
i_before
=
i
;
if
(
STRING_MULTIBYTE
(
keys
))
FETCH_STRING_CHAR_ADVANCE
(
c
,
keys
,
i
,
i_byte
);
...
...
@@ -1759,7 +1759,7 @@ push_key_description (c, p)
*
p
++
=
'P'
;
*
p
++
=
'C'
;
}
else
if
(
c
<
256
)
else
if
(
c
<
128
)
*
p
++
=
c
;
else
if
(
c
<
512
)
{
...
...
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