aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-24 00:19:39 +0000
committerRichard M. Stallman <[email protected]>1993-11-24 00:19:39 +0000
commit1f179e27526aa2570bc764ad1ebd3deb32ed5b7b (patch)
tree2dd4d64a60274d8b080b6fed50a08d2a8ccda2f7
parent11db296f3b5f422df3bcaa410ffc9bc1d944fb82 (diff)
(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 66e9a1f998..3552c27d94 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -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)