summaryrefslogtreecommitdiff
path: root/lisp/info.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2006-05-26 20:09:58 +0000
committerEli Zaretskii <eliz@gnu.org>2006-05-26 20:09:58 +0000
commitfa62821e21aae313dc611f1695c360f47bd31e25 (patch)
treefce3f29dc56e083c44b6f43dd4fa9d588cf09644 /lisp/info.el
parente7682d9261da6de546550672362e5d4cee8d852e (diff)
downloademacs-fa62821e21aae313dc611f1695c360f47bd31e25.tar.gz
(Info-index-next): Use where-is-internal to report actual binding of
Info-index-next, rather than hard-coded `,'.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 2737999b090..2669b709316 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2866,8 +2866,11 @@ Give an empty topic name to go to the Index node itself."
(car (car Info-index-alternatives))
(nth 2 (car Info-index-alternatives))
(if (cdr Info-index-alternatives)
- (format "(%s total; use `,' for next)"
- (length Info-index-alternatives))
+ (format "(%s total; use `%s' for next)"
+ (length Info-index-alternatives)
+ (key-description (where-is-internal
+ 'Info-index-next overriding-local-map
+ t)))
"(Only match)")))
(defun Info-find-index-name (name)