From: Frederic Bron Date: Sun, 4 Jul 2010 20:17:09 +0000 (+0200) Subject: in html->texi conversion, an unexpected ";" was left X-Git-Tag: release/2.13.28-1~4 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=4969e8c55350771d5a9c73a64f4cee7e512d924c;p=lilypond.git in html->texi conversion, an unexpected ";" was left --- diff --git a/scripts/build/html-to-texi.py b/scripts/build/html-to-texi.py index 520c3ecce8..a7005ec150 100644 --- a/scripts/build/html-to-texi.py +++ b/scripts/build/html-to-texi.py @@ -53,7 +53,7 @@ body = re.sub ('(?ms)
(.*?)(
)', r'\1', body) body = re.sub ('(?ms)(.*?)()', r'@strong{\1}', body) body = re.sub ('(?ms)(.*?)()', r'@emph{\1}', body) -body = re.sub ('(?ms) ', r'@tie{}', body) +body = re.sub ('(?ms) ', r'@tie{}', body) body = re.sub ('(?ms)\cite{(.*?)}', r'[\1]', body) body = re.sub ('(?ms)\cite{(.*?)}', r'[\1]', body)