(Info-restore-point): Don't wipe out hl before using it.
This commit is contained in:
parent
ad8fb8aec7
commit
d96504df58
1 changed files with 2 additions and 2 deletions
|
@ -583,8 +583,8 @@ In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
|
|||
(if (and (equal (nth 0 (car hl)) Info-current-file)
|
||||
(equal (nth 1 (car hl)) Info-current-node))
|
||||
(progn
|
||||
(setq hl nil) ;terminate the while at next iter
|
||||
(goto-char (nth 2 (car hl))))
|
||||
(goto-char (nth 2 (car hl)))
|
||||
(setq hl nil)) ;terminate the while at next iter
|
||||
(setq hl (cdr hl)))))
|
||||
|
||||
(defvar Info-last-search nil
|
||||
|
|
Loading…
Add table
Reference in a new issue