aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-14 03:38:52 +0000
committerRichard M. Stallman1994-12-14 03:38:52 +0000
commita1a4d0bc34d29b6a8aa46a81ba3189fbe994dc42 (patch)
treeebc10ecb8d701b36f28e771b00c904d047036fcf
parentd10ad24f45d9e47225a174c060c56d6eae942e48 (diff)
downloademacs-a1a4d0bc34d29b6a8aa46a81ba3189fbe994dc42.tar.gz
emacs-a1a4d0bc34d29b6a8aa46a81ba3189fbe994dc42.zip
(Info-split): Fix 1-off error in subfile position.
-rw-r--r--lisp/informat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/informat.el b/lisp/informat.el
index 5a861ed18ba..2d923a1570d 100644
--- a/lisp/informat.el
+++ b/lisp/informat.el
@@ -143,7 +143,7 @@ contains just the tag table and a directory of subfiles."
143 (while subfiles 143 (while subfiles
144 (goto-char start) 144 (goto-char start)
145 (insert (nth 1 (car subfiles)) 145 (insert (nth 1 (car subfiles))
146 (format ": %d" (car (car subfiles))) 146 (format ": %d" (1- (car (car subfiles))))
147 "\n") 147 "\n")
148 (setq subfiles (cdr subfiles))) 148 (setq subfiles (cdr subfiles)))
149 (goto-char start) 149 (goto-char start)