]> git.eshelyaron.com Git - emacs.git/commitdiff
(Info-follow-reference): Correct one-off error in comparing start-point.
authorRichard M. Stallman <rms@gnu.org>
Wed, 24 Nov 1993 00:19:39 +0000 (00:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 24 Nov 1993 00:19:39 +0000 (00:19 +0000)
lisp/info.el

index 66e9a1f998798881e5a2f2813aaab0a907b54f7d..3552c27d943aab03d9a6e7b3baf4af4838dd9a44 100644 (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)