From a1a4d0bc34d29b6a8aa46a81ba3189fbe994dc42 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 14 Dec 1994 03:38:52 +0000 Subject: [PATCH] (Info-split): Fix 1-off error in subfile position. --- lisp/informat.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5