changeset 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 78323ca35d6f
children 54b3438dfc7f
files lisp/info.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)