Mercurial > emacs
diff lisp/info.el @ 5146:aa2236a14893
(Info-follow-reference): Correct one-off error in comparing start-point.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 24 Nov 1993 00:19:39 +0000 |
parents | 624596e9c5d1 |
children | c415cc48a084 |
line wrap: on
line diff
--- a/lisp/info.el Tue Nov 23 23:57:42 1993 +0000 +++ b/lisp/info.el Wed Nov 24 00:19:39 1993 +0000 @@ -728,7 +728,7 @@ (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)