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
cc3e6465
Commit
cc3e6465
authored
Apr 19, 1997
by
Richard M. Stallman
Browse files
(describe_vector): Test for suppressed commands in
all cases. Call get_keyelt with two arguments.
parent
67fc16a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/keymap.c
src/keymap.c
+3
-2
No files found.
src/keymap.c
View file @
cc3e6465
...
...
@@ -2623,12 +2623,13 @@ describe_vector (vector, elt_prefix, elt_describer,
if
(
i
>=
CHAR_TABLE_SINGLE_BYTE_SLOTS
&&
!
CHARSET_DEFINED_P
(
i
-
128
))
continue
;
definition
=
get_keyelt
(
XCHAR_TABLE
(
vector
)
->
contents
[
i
]);
if
(
NILP
(
definition
))
continue
;
definition
=
get_keyelt
(
XCHAR_TABLE
(
vector
)
->
contents
[
i
],
0
);
}
else
definition
=
get_keyelt
(
XVECTOR
(
vector
)
->
contents
[
i
],
0
);
if
(
NILP
(
definition
))
continue
;
/* Don't mention suppressed commands. */
if
(
SYMBOLP
(
definition
)
&&
partial
)
{
...
...
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