From 1f179e27526aa2570bc764ad1ebd3deb32ed5b7b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 24 Nov 1993 00:19:39 +0000 Subject: [PATCH] (Info-follow-reference): Correct one-off error in comparing start-point. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)