diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-04 11:23:21 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-04 11:23:26 +0100 |
commit | 517e123f90175f9c8fb94348c46d7d6d3236d57a (patch) | |
tree | 7037ab6c016c0c18d1bbe05622b0e3c5ec266750 /lisp/info.el | |
parent | 5666955379e8ca82d072c1aba60a2c58ff3f855a (diff) | |
download | emacs-517e123f90175f9c8fb94348c46d7d6d3236d57a.tar.gz emacs-517e123f90175f9c8fb94348c46d7d6d3236d57a.tar.bz2 emacs-517e123f90175f9c8fb94348c46d7d6d3236d57a.zip |
Be stricter when going back to the previous node in Info-find-node-2
* lisp/info.el (Info-find-node-2): When going back to the previous
node, be strict (bug#31137) since we have the exact node name.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index dec93928b38..7f169f4b556 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1260,9 +1260,9 @@ is non-nil)." (if Info-history (let ((hist (car Info-history))) (setq Info-history (cdr Info-history)) - (Info-find-node (nth 0 hist) (nth 1 hist) t) + (Info-find-node (nth 0 hist) (nth 1 hist) t t) (goto-char (nth 2 hist))) - (Info-find-node Info-current-file "Top" t))))) + (Info-find-node Info-current-file "Top" t t))))) ;; Cache the contents of the (virtual) dir file, once we have merged ;; it for the first time, so we can save time subsequently. |