changeset 6121:a9caf92da1d3

(Info-restore-point): Don't wipe out hl before using it.
author Karl Heuer <kwzh@gnu.org>
date Tue, 01 Mar 1994 09:02:19 +0000
parents 121ee28dbda0
children 6e9a078b16bd
files lisp/info.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/info.el	Tue Mar 01 06:19:22 1994 +0000
+++ b/lisp/info.el	Tue Mar 01 09:02:19 1994 +0000
@@ -583,8 +583,8 @@
     (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