# HG changeset patch # User Nick Roberts # Date 1199655297 0 # Node ID 91ea9f8cc64f85163c8f8d303ac3283e489ee949 # Parent f9428851f9295aa3e9610fefd3ad86d6ad58d2e4 (parse_menu_item): Don't enclose key bindings on menu bar in parentheses. diff -r f9428851f929 -r 91ea9f8cc64f src/keyboard.c --- a/src/keyboard.c Sun Jan 06 21:32:13 2008 +0000 +++ b/src/keyboard.c Sun Jan 06 21:34:57 2008 +0000 @@ -8110,7 +8110,8 @@ 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); }