aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2008-01-06 21:34:57 +0000
committerNick Roberts2008-01-06 21:34:57 +0000
commitee2e9728e425bf4334f5383e94c974036a7fc853 (patch)
tree5774a952720bfaece953b886d48486a357e6b7e8
parent8290574e109ecf22b8c8b356bac0ead97bdd7fd1 (diff)
downloademacs-ee2e9728e425bf4334f5383e94c974036a7fc853.tar.gz
emacs-ee2e9728e425bf4334f5383e94c974036a7fc853.zip
(parse_menu_item): Don't enclose key bindings on
menu bar in parentheses.
-rw-r--r--src/keyboard.c3
1 files changed, 2 insertions, 1 deletions
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)
8110 tem = XCDR (cachelist); 8110 tem = XCDR (cachelist);
8111 if (newcache && !NILP (tem)) 8111 if (newcache && !NILP (tem))
8112 { 8112 {
8113 tem = concat3 (build_string (" ("), tem, build_string (")")); 8113 tem = concat2 (build_string (" "), tem);
8114 // tem = concat3 (build_string (" ("), tem, build_string (")"));
8114 XSETCDR (cachelist, tem); 8115 XSETCDR (cachelist, tem);
8115 } 8116 }
8116 8117