From: Nick Roberts Date: Sun, 6 Jan 2008 21:34:57 +0000 (+0000) Subject: (parse_menu_item): Don't enclose key bindings on X-Git-Tag: emacs-pretest-23.0.90~8678 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee2e9728e425bf4334f5383e94c974036a7fc853;p=emacs.git (parse_menu_item): Don't enclose key bindings on menu bar in parentheses. --- 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); }