(parse_menu_item): Don't enclose key bindings on
authorNick Roberts <nickrob@snap.net.nz>
Sun, 6 Jan 2008 21:34:57 +0000 (21:34 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Sun, 6 Jan 2008 21:34:57 +0000 (21:34 +0000)
menu bar in parentheses.

src/keyboard.c

index 4ede295..0122e31 100644 (file)
@@ -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);
     }