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
5cba3869
Commit
5cba3869
authored
Feb 19, 1993
by
Richard M. Stallman
Browse files
(describe_map): Call Fkey_description before build_string.
parent
4591cb90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/keymap.c
src/keymap.c
+6
-2
No files found.
src/keymap.c
View file @
5cba3869
...
...
@@ -1652,8 +1652,12 @@ describe_map (map, keys, partial, shadow)
register
Lisp_Object
keysdesc
;
if
(
!
NILP
(
keys
)
&&
XFASTINT
(
Flength
(
keys
))
>
0
)
keysdesc
=
concat2
(
Fkey_description
(
keys
),
build_string
(
" "
));
{
Lisp_Object
tem
;
/* Call Fkey_description first, to avoid GC bug for the other string. */
tem
=
Fkey_description
(
keys
);
keysdesc
=
concat2
(
tem
,
build_string
(
" "
));
}
else
keysdesc
=
Qnil
;
...
...
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