diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c7640fa91bd..99e03b87961 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-05-20 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c (read_char_minibuf_menu_prompt): Don't list | ||
| 4 | equivalent key bindings here. | ||
| 5 | |||
| 1 | 2002-05-20 Ken Raeburn <raeburn@gnu.org> | 6 | 2002-05-20 Ken Raeburn <raeburn@gnu.org> |
| 2 | 7 | ||
| 3 | Change symbol structure to contain a lisp object for the symbol | 8 | Change symbol structure to contain a lisp object for the symbol |
diff --git a/src/keyboard.c b/src/keyboard.c index 25e0c69af1d..ffc86840865 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -7727,12 +7727,14 @@ read_char_minibuf_menu_prompt (commandflag, nmaps, maps) | |||
| 7727 | if (! char_matches) | 7727 | if (! char_matches) |
| 7728 | desc = Fsingle_key_description (event, Qnil); | 7728 | desc = Fsingle_key_description (event, Qnil); |
| 7729 | 7729 | ||
| 7730 | #if 0 /* It is redundant to list the equivalent key bindings because | ||
| 7731 | the prefix is what the user has already typed. */ | ||
| 7730 | tem | 7732 | tem |
| 7731 | = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ]; | 7733 | = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ]; |
| 7732 | if (!NILP (tem)) | 7734 | if (!NILP (tem)) |
| 7733 | /* Insert equivalent keybinding. */ | 7735 | /* Insert equivalent keybinding. */ |
| 7734 | s = concat2 (s, tem); | 7736 | s = concat2 (s, tem); |
| 7735 | 7737 | #endif | |
| 7736 | tem | 7738 | tem |
| 7737 | = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE]; | 7739 | = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE]; |
| 7738 | if (EQ (tem, QCradio) || EQ (tem, QCtoggle)) | 7740 | if (EQ (tem, QCradio) || EQ (tem, QCtoggle)) |