aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-02-14 08:14:01 +0000
committerJuanma Barranquero2006-02-14 08:14:01 +0000
commita5f435502d4cf4f06ad2299e0be6e54d86bbe34c (patch)
tree11294c78ad3867842accdc74eaaf3160221d2179
parentdd60bebe07d9fc5a6954d306269553d09e715de2 (diff)
downloademacs-a5f435502d4cf4f06ad2299e0be6e54d86bbe34c.tar.gz
emacs-a5f435502d4cf4f06ad2299e0be6e54d86bbe34c.zip
(where-is): Fix displaying of remappings.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/help.el2
2 files changed, 14 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 83e47bfc26d..207d7c50607 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-02-14 Juanma Barranquero <lekktu@gmail.com>
2
3 * help.el (where-is): Fix message for remapped commands.
4
12006-02-13 Chong Yidong <cyd@stupidchicken.com> 52006-02-13 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * files.el (safe-local-variable-values): New option. 7 * files.el (safe-local-variable-values): New option.
@@ -17,13 +21,13 @@
17 moved to safe-local-variable-p. 21 moved to safe-local-variable-p.
18 (hack-one-local-variable): Checks moved to hack-local-variables. 22 (hack-one-local-variable): Checks moved to hack-local-variables.
19 23
20 (byte-compile-dynamic, c-basic-offset, c-file-style, 24 (byte-compile-dynamic, c-basic-offset, c-file-style)
21 c-indent-level, comment-column, fill-column, fill-prefix, 25 (c-indent-level, comment-column, fill-column, fill-prefix)
22 indent-tabs-mode, kept-new-versions, no-byte-compile, 26 (indent-tabs-mode, kept-new-versions, no-byte-compile)
23 no-update-autoloads, outline-regexp, page-delimiter, 27 (no-update-autoloads, outline-regexp, page-delimiter)
24 paragraph-start, paragraph-separate, sentence-end, 28 (paragraph-start, paragraph-separate, sentence-end)
25 sentence-end-double-space tab-width, version-control): Add 29 (sentence-end-double-space tab-width, version-control):
26 `safe-local-variable' property. 30 Add `safe-local-variable' property.
27 31
28 * find-lisp.el: Delete nonexistent `autocompile' file variable. 32 * find-lisp.el: Delete nonexistent `autocompile' file variable.
29 33
@@ -49,7 +53,7 @@
49 53
502006-02-13 Jay Belanger <belanger@truman.edu> 542006-02-13 Jay Belanger <belanger@truman.edu>
51 55
52 * calc/calc-arith.el: (math-check-known-matrixp): Make sure 56 * calc/calc-arith.el (math-check-known-matrixp): Make sure
53 expression is a symbol before checking that it is bound. 57 expression is a symbol before checking that it is bound.
54 58
552006-02-13 Richard M. Stallman <rms@gnu.org> 592006-02-13 Richard M. Stallman <rms@gnu.org>
@@ -61,7 +65,7 @@
61 inside `interactive' spec. 65 inside `interactive' spec.
62 (describe-key-briefly-internal, describe-key-internal): 66 (describe-key-briefly-internal, describe-key-internal):
63 Functions merged back into their callers. 67 Functions merged back into their callers.
64 68
652006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change) 692006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change)
66 70
67 * info.el (info-xref-visited): Inherit from info-xref too. 71 * info.el (info-xref-visited): Inherit from info-xref too.
diff --git a/lisp/help.el b/lisp/help.el
index 76aeac0ef62..02045948ecb 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -510,7 +510,7 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
510 (if (> (length keys) 0) 510 (if (> (length keys) 0)
511 (if remapped 511 (if remapped
512 (format "%s is remapped to %s which is on %s" 512 (format "%s is remapped to %s which is on %s"
513 definition symbol keys) 513 symbol remapped keys)
514 (format "%s is on %s" symbol keys)) 514 (format "%s is on %s" symbol keys))
515 ;; If this is the command the user asked about, 515 ;; If this is the command the user asked about,
516 ;; and it is not on any key, say so. 516 ;; and it is not on any key, say so.