From: Richard M. Stallman Date: Wed, 14 Dec 1994 03:38:52 +0000 (+0000) Subject: (Info-split): Fix 1-off error in subfile position. X-Git-Tag: emacs-19.34~5699 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1a4d0bc34d29b6a8aa46a81ba3189fbe994dc42;p=emacs.git (Info-split): Fix 1-off error in subfile position. --- 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)