]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add extra newline after `%begin verbatim' in makelsr.py.
authorNeil Puttock <n.puttock@gmail.com>
Wed, 5 Nov 2008 17:05:47 +0000 (17:05 +0000)
committerNeil Puttock <n.puttock@gmail.com>
Wed, 5 Nov 2008 20:31:40 +0000 (20:31 +0000)
buildscripts/makelsr.py

index 65f06d60ab6a573a750b34b8c6c26348871a5b77..86323d260d5f9ad89269c407cccfaf155217831b 100755 (executable)
@@ -57,7 +57,7 @@ notags_files = []
 end_header_re = re.compile ('(\\header {.+?doctitle = ".+?})\n', re.M | re.S)
 
 def mark_verbatim_section (ly_code):
-       return end_header_re.sub ('\\1 % begin verbatim\n', ly_code, 1)
+       return end_header_re.sub ('\\1 % begin verbatim\n\n', ly_code, 1)
 
 # '% LSR' comments are to be stripped
 lsr_comment_re = re.compile (r'\s*%+\s*LSR.*')