diff options
| author | Richard M. Stallman <rms@gnu.org> | 1996-12-30 20:44:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1996-12-30 20:44:24 +0000 |
| commit | 882e61bf0448925ba174cec8eb296904b77ff45d (patch) | |
| tree | 9527c5fe7d612e787e3d7b390feb16d30450e465 /lisp | |
| parent | c1148e39cc2fb8614c29a2b21d61885ac3897a26 (diff) | |
| download | emacs-882e61bf0448925ba174cec8eb296904b77ff45d.tar.gz | |
(Info-find-node): Don't clear Info-index-alternatives.
(Info-index-next): Fix error message.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/info.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 8dc67100c81..63076dfa93b 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -316,7 +316,6 @@ In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself." (setq Info-current-file nil Info-current-subfile nil Info-current-file-completions nil - Info-index-alternatives nil buffer-file-name nil) (erase-buffer) (if (eq filename t) @@ -1388,7 +1387,7 @@ Give a blank topic name to go to the Index node itself." "Go to the next matching index item from the last `i' command." (interactive "p") (or Info-index-alternatives - (error "No previous `i' command in this file")) + (error "No previous `i' command")) (while (< num 0) (setq num (+ num (length Info-index-alternatives)))) (while (> num 0) |
