From ee2e9728e425bf4334f5383e94c974036a7fc853 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 6 Jan 2008 21:34:57 +0000 Subject: [PATCH] (parse_menu_item): Don't enclose key bindings on menu bar in parentheses. --- src/keyboard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 4ede295fcdb..0122e31396e 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -8110,7 +8110,8 @@ parse_menu_item (item, notreal, inmenubar) tem = XCDR (cachelist); if (newcache && !NILP (tem)) { - tem = concat3 (build_string (" ("), tem, build_string (")")); + tem = concat2 (build_string (" "), tem); + // tem = concat3 (build_string (" ("), tem, build_string (")")); XSETCDR (cachelist, tem); } -- 2.39.5