1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-28 01:00:52 -07:00

(parse_menu_item): Don't enclose key bindings on

menu bar in parentheses.
This commit is contained in:
Nick Roberts 2008-01-06 21:34:57 +00:00
parent 8290574e10
commit ee2e9728e4

View 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);
}