diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index e042f64a099..7ef50502ba9 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2623,12 +2623,13 @@ describe_vector (vector, elt_prefix, elt_describer, | |||
| 2623 | if (i >= CHAR_TABLE_SINGLE_BYTE_SLOTS | 2623 | if (i >= CHAR_TABLE_SINGLE_BYTE_SLOTS |
| 2624 | && !CHARSET_DEFINED_P (i - 128)) | 2624 | && !CHARSET_DEFINED_P (i - 128)) |
| 2625 | continue; | 2625 | continue; |
| 2626 | definition = get_keyelt (XCHAR_TABLE (vector)->contents[i]); | 2626 | definition = get_keyelt (XCHAR_TABLE (vector)->contents[i], 0); |
| 2627 | if (NILP (definition)) continue; | ||
| 2628 | } | 2627 | } |
| 2629 | else | 2628 | else |
| 2630 | definition = get_keyelt (XVECTOR (vector)->contents[i], 0); | 2629 | definition = get_keyelt (XVECTOR (vector)->contents[i], 0); |
| 2631 | 2630 | ||
| 2631 | if (NILP (definition)) continue; | ||
| 2632 | |||
| 2632 | /* Don't mention suppressed commands. */ | 2633 | /* Don't mention suppressed commands. */ |
| 2633 | if (SYMBOLP (definition) && partial) | 2634 | if (SYMBOLP (definition) && partial) |
| 2634 | { | 2635 | { |