# HG changeset patch # User Richard M. Stallman # Date 902223604 0 # Node ID 18839ab5328559cf7a518398d5cf047e92cf0a01 # Parent 12fca8181ecad5033cbc09456943dfb951456fa7 (Info-find-node): Once again, use byte-to-position. diff -r 12fca8181eca -r 18839ab53285 lisp/info.el --- a/lisp/info.el Tue Aug 04 09:34:25 1998 +0000 +++ b/lisp/info.el Tue Aug 04 09:40:04 1998 +0000 @@ -488,7 +488,8 @@ (goto-char guesspos) ;; Else we may have a node, which we search for: - (goto-char (max (point-min) (- guesspos 1000))) + (goto-char (max (point-min) + (- (byte-to-position guesspos) 1000))) ;; Now search from our advised position ;; (or from beg of buffer) ;; to find the actual node.