]> git.donarmstrong.com Git - lilypond.git/commitdiff
makelsr.py: Fix @qq{} substitution in doctitles.
authorNeil Puttock <n.puttock@gmail.com>
Mon, 21 Dec 2009 22:35:52 +0000 (22:35 +0000)
committerNeil Puttock <n.puttock@gmail.com>
Mon, 21 Dec 2009 23:04:23 +0000 (23:04 +0000)
scripts/auxiliar/makelsr.py

index a31468bfd1136316076c455228ef4e715e70f317..ca7db5c5b2ca900fe047e6fc21bd91433bbcfa05 100755 (executable)
@@ -73,7 +73,7 @@ def doctitle_sub (title_match):
     # Comma forbidden in Texinfo node name
     title = title_match.group (2).replace (',', '')
     title = texinfo_q_re.sub (r"`\1'", title)
-    title = texinfo_qq_re.sub (r'"\1"', title)
+    title = texinfo_qq_re.sub (r'\"\1\"', title)
     return title_match.group (1) + title + '"'
 
 def mark_verbatim_section (ly_code):