diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-12-14 03:38:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-12-14 03:38:52 +0000 |
commit | 438aa14b02a67889524323a7e44f6ce2819b69f2 (patch) | |
tree | 9b231e45a274ccc2d5e9d032b2f3d6e6667db6bf /lisp/informat.el | |
parent | f5426232d0eaaf3794e929fec29d77a8a3e7fa35 (diff) | |
download | emacs-438aa14b02a67889524323a7e44f6ce2819b69f2.tar.gz |
(Info-split): Fix 1-off error in subfile position.
Diffstat (limited to 'lisp/informat.el')
-rw-r--r-- | lisp/informat.el | 2 |
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." (while subfiles (goto-char start) (insert (nth 1 (car subfiles)) - (format ": %d" (car (car subfiles))) + (format ": %d" (1- (car (car subfiles)))) "\n") (setq subfiles (cdr subfiles))) (goto-char start) |