(Info-follow-reference): Correct one-off error in comparing start-point.

This commit is contained in:
Richard M. Stallman 1993-11-24 00:19:39 +00:00
parent 11db296f3b
commit 1f179e2752

View file

@ -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)