From fd26d0d24c983bbf22c121edda2d7f973b9118b6 Mon Sep 17 00:00:00 2001 From: matsb Date: Sat, 27 Jul 2002 09:35:46 +0000 Subject: [PATCH] Handle printfilename also with verbatim --- scripts/lilypond-book.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index e691aeb66b..ff58c73512 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -963,9 +963,9 @@ def schedule_lilypond_block (chunk): if 'smallverbatim' in opts: - newbody = output_verbatim (body, 1) + newbody = newbody + output_verbatim (body, 1) elif 'verbatim' in opts: - newbody = output_verbatim (body, 0) + newbody = newbody + output_verbatim (body, 0) for o in opts: m = re.search ('intertext="(.*?)"', o) -- 2.39.5