From 301d4a3f34e23bb74c1eb33775d8f53596d81241 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 20 May 2002 14:50:25 +0000 Subject: [PATCH] (read_char_minibuf_menu_prompt): Don't list equivalent key bindings here. --- src/ChangeLog | 5 +++++ src/keyboard.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index c7640fa91bd..99e03b87961 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-05-20 Richard M. Stallman + + * keyboard.c (read_char_minibuf_menu_prompt): Don't list + equivalent key bindings here. + 2002-05-20 Ken Raeburn 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) if (! char_matches) desc = Fsingle_key_description (event, Qnil); +#if 0 /* It is redundant to list the equivalent key bindings because + the prefix is what the user has already typed. */ tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ]; if (!NILP (tem)) /* Insert equivalent keybinding. */ s = concat2 (s, tem); - +#endif tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE]; if (EQ (tem, QCradio) || EQ (tem, QCtoggle)) -- 2.39.5