Mercurial > emacs
changeset 87603:91ea9f8cc64f
(parse_menu_item): Don't enclose key bindings on
menu bar in parentheses.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Sun, 06 Jan 2008 21:34:57 +0000 |
parents | f9428851f929 |
children | 26665fb0f604 |
files | src/keyboard.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }