From d96504df586383ba343b64d9b0e5e6431bc00441 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 1 Mar 1994 09:02:19 +0000 Subject: [PATCH] (Info-restore-point): Don't wipe out hl before using it. --- lisp/info.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index d2cff3aec96..06496692f75 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -583,8 +583,8 @@ In standalone mode, \\\\[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 -- 2.39.5