1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-23 06:00:41 -08:00

(where-is): Fix displaying of remappings.

This commit is contained in:
Juanma Barranquero 2006-02-14 08:14:01 +00:00
parent dd60bebe07
commit a5f435502d
2 changed files with 14 additions and 10 deletions

View file

@ -1,3 +1,7 @@
2006-02-14 Juanma Barranquero <lekktu@gmail.com>
* help.el (where-is): Fix message for remapped commands.
2006-02-13 Chong Yidong <cyd@stupidchicken.com> 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
* files.el (safe-local-variable-values): New option. * files.el (safe-local-variable-values): New option.
@ -17,13 +21,13 @@
moved to safe-local-variable-p. moved to safe-local-variable-p.
(hack-one-local-variable): Checks moved to hack-local-variables. (hack-one-local-variable): Checks moved to hack-local-variables.
(byte-compile-dynamic, c-basic-offset, c-file-style, (byte-compile-dynamic, c-basic-offset, c-file-style)
c-indent-level, comment-column, fill-column, fill-prefix, (c-indent-level, comment-column, fill-column, fill-prefix)
indent-tabs-mode, kept-new-versions, no-byte-compile, (indent-tabs-mode, kept-new-versions, no-byte-compile)
no-update-autoloads, outline-regexp, page-delimiter, (no-update-autoloads, outline-regexp, page-delimiter)
paragraph-start, paragraph-separate, sentence-end, (paragraph-start, paragraph-separate, sentence-end)
sentence-end-double-space tab-width, version-control): Add (sentence-end-double-space tab-width, version-control):
`safe-local-variable' property. Add `safe-local-variable' property.
* find-lisp.el: Delete nonexistent `autocompile' file variable. * find-lisp.el: Delete nonexistent `autocompile' file variable.
@ -49,7 +53,7 @@
2006-02-13 Jay Belanger <belanger@truman.edu> 2006-02-13 Jay Belanger <belanger@truman.edu>
* calc/calc-arith.el: (math-check-known-matrixp): Make sure * calc/calc-arith.el (math-check-known-matrixp): Make sure
expression is a symbol before checking that it is bound. expression is a symbol before checking that it is bound.
2006-02-13 Richard M. Stallman <rms@gnu.org> 2006-02-13 Richard M. Stallman <rms@gnu.org>
@ -61,7 +65,7 @@
inside `interactive' spec. inside `interactive' spec.
(describe-key-briefly-internal, describe-key-internal): (describe-key-briefly-internal, describe-key-internal):
Functions merged back into their callers. Functions merged back into their callers.
2006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change) 2006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
* info.el (info-xref-visited): Inherit from info-xref too. * info.el (info-xref-visited): Inherit from info-xref too.

View file

@ -510,7 +510,7 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
(if (> (length keys) 0) (if (> (length keys) 0)
(if remapped (if remapped
(format "%s is remapped to %s which is on %s" (format "%s is remapped to %s which is on %s"
definition symbol keys) symbol remapped keys)
(format "%s is on %s" symbol keys)) (format "%s is on %s" symbol keys))
;; If this is the command the user asked about, ;; If this is the command the user asked about,
;; and it is not on any key, say so. ;; and it is not on any key, say so.