aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/info.el
diff options
context:
space:
mode:
authorJuri Linkov <[email protected]>2005-10-21 08:49:46 +0000
committerJuri Linkov <[email protected]>2005-10-21 08:49:46 +0000
commit05d36154bf35dbd15f29c4f754531da799ffdd12 (patch)
tree96b079552cdd7f2b7dea00ecef4167dce4f4aa95 /lisp/info.el
parentdf410295caefb11d4682357d122b6e1fa39eaa1a (diff)
(Info-index-next): Add total number of index alternatives to the message.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 6594d76fa0..c94e4121dc 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2819,7 +2819,8 @@ Give a blank 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)
- "(`,' tries to find next)"
+ (format "(%s total; use `,' for next)"
+ (length Info-index-alternatives))
"(Only match)")))
(defun Info-find-index-name (name)