From: Richard M. Stallman Date: Wed, 24 Nov 1993 00:19:39 +0000 (+0000) Subject: (Info-follow-reference): Correct one-off error in comparing start-point. X-Git-Tag: emacs-19.34~10705 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f179e27526aa2570bc764ad1ebd3deb32ed5b7b;p=emacs.git (Info-follow-reference): Correct one-off error in comparing start-point. --- diff --git a/lisp/info.el b/lisp/info.el index 66e9a1f9987..3552c27d943 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -728,7 +728,7 @@ NAME may be an abbreviation of the reference name." (1- (point)))) ;; See if this one should be the default. (and (null default) - (< (match-beginning 0) start-point) + (<= (match-beginning 0) start-point) (<= start-point (point)) (setq default t)) (setq i 0)