From: janneke Date: Tue, 23 Sep 2003 15:47:48 +0000 (+0000) Subject: (re_dict): Only fix texinfo @mbinclude X-Git-Tag: release/2.1.3~85 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=741f375fddc698e2dcf13af7702bf72c7cc1e2e0;p=lilypond.git (re_dict): Only fix texinfo @mbinclude regexp for DOS/Windows, we are too paranoid to fix others. --- diff --git a/ChangeLog b/ChangeLog index d2dc2dbe98..4b3bc3dce0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-09-23 Jan Nieuwenhuizen + + * scripts/lilypond-book.py (re_dict): Only fix texinfo @mbinclude + regexp for DOS/Windows, we are too paranoid to fix others. + 2003-09-23 Han-Wen Nienhuys * lily/parser.yy (bass_mod): bass figure alterations are semi diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 8a2b76ac6c..091a1f6e13 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -553,7 +553,7 @@ re_dict = { # why do we have distinction between @mbinclude and @include? 'texi': { - 'include': '(?m)^[^%\n]*?(?P@mbinclude[ \n\t]+(?P[^\t \n]*))', + 'include': '(?m)^[^%\n]*?(?P@mbinclude\s+(?P\S*))', 'input': no_match, 'header': no_match, 'preamble-end': no_match,