Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
80a51fa0
Commit
80a51fa0
authored
Aug 22, 2012
by
Christopher Schmidt
Committed by
Glenn Morris
Aug 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* help-fns.el (help-fns--key-bindings): Abbreviate non-symbol remap targets.
Fixes: debbugs:12174
parent
fbb6300b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/help-fns.el
lisp/help-fns.el
+5
-3
No files found.
lisp/ChangeLog
View file @
80a51fa0
2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
* help-fns.el (help-fns--key-bindings):
Abbreviate non-symbol remap targets. (Bug#12174)
2012-08-22 Martin Rudalics <rudalics@gmx.at>
* dired.el (dired-mark-remembered): Don't clobber point.
...
...
lisp/help-fns.el
View file @
80a51fa0
...
...
@@ -397,9 +397,11 @@ suitable file is found, return nil."
(
if
(
member
(
event-modifiers
(
aref
key
0
))
'
(
nil
(
shift
)))
(
push
key
non-modified-keys
)))
(
when
remapped
(
princ
"Its keys are remapped to `"
)
(
princ
(
symbol-name
remapped
))
(
princ
"'.\n"
))
(
princ
"Its keys are remapped to "
)
(
princ
(
if
(
symbolp
remapped
)
(
concat
"`"
(
symbol-name
remapped
)
"'"
)
"an anonymous command"
))
(
princ
".\n"
))
(
when
keys
(
princ
(
if
remapped
...
...
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