aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-24 00:19:39 +0000
committerRichard M. Stallman1993-11-24 00:19:39 +0000
commit1f179e27526aa2570bc764ad1ebd3deb32ed5b7b (patch)
tree2dd4d64a60274d8b080b6fed50a08d2a8ccda2f7
parent11db296f3b5f422df3bcaa410ffc9bc1d944fb82 (diff)
downloademacs-1f179e27526aa2570bc764ad1ebd3deb32ed5b7b.tar.gz
emacs-1f179e27526aa2570bc764ad1ebd3deb32ed5b7b.zip
(Info-follow-reference): Correct one-off error in comparing start-point.
-rw-r--r--lisp/info.el2
1 files changed, 1 insertions, 1 deletions
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."
728 (1- (point)))) 728 (1- (point))))
729 ;; See if this one should be the default. 729 ;; See if this one should be the default.
730 (and (null default) 730 (and (null default)
731 (< (match-beginning 0) start-point) 731 (<= (match-beginning 0) start-point)
732 (<= start-point (point)) 732 (<= start-point (point))
733 (setq default t)) 733 (setq default t))
734 (setq i 0) 734 (setq i 0)