summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-12-13 18:53:37 +0000
committerRichard M. Stallman <rms@gnu.org>1994-12-13 18:53:37 +0000
commitb6271ceee1d089dea84243a971ec8940b86cb459 (patch)
tree2a83b0fd1d946d9d49d30f2e7a3dc47a68db8443
parent56656dd088c879bc119bf623d3234aa25e083ece (diff)
downloademacs-b6271ceee1d089dea84243a971ec8940b86cb459.tar.gz
(Info-tagify): Avoid 1-off error in position of a tag.
-rw-r--r--lisp/informat.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/informat.el b/lisp/informat.el
index 3930378c5df..5a861ed18ba 100644
--- a/lisp/informat.el
+++ b/lisp/informat.el
@@ -48,9 +48,11 @@
(case-fold-search t)
list)
(while (search-forward "\n\^_" nil t)
- (forward-line 1)
- (let ((beg (point)))
- (forward-line 1)
+ ;; We want the 0-origin character position of the ^_.
+ ;; That is the same as the Emacs (1-origin) position
+ ;; of the newline before it.
+ (let ((beg (match-beginning 0)))
+ (forward-line 2)
(if (re-search-backward regexp beg t)
(setq list
(cons (list (buffer-substring