Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ee2e9728
Commit
ee2e9728
authored
Jan 06, 2008
by
Nick Roberts
Browse files
(parse_menu_item): Don't enclose key bindings on
menu bar in parentheses.
parent
8290574e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/keyboard.c
src/keyboard.c
+2
-1
No files found.
src/keyboard.c
View file @
ee2e9728
...
...
@@ -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);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment