From: Graham Percival Date: Mon, 4 Oct 2010 17:25:10 +0000 (+0100) Subject: Convert: escape a . to avoid false warnings. X-Git-Tag: release/2.13.36-1~64 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=ea112d150717319f2592dc417b73d0ffe9e54a80;p=lilypond.git Convert: escape a . to avoid false warnings. The old convert-ly complains about things like \bar "'" but judging from the warning message, it's only supposed to match \bar "." --- diff --git a/python/convertrules.py b/python/convertrules.py index df2540967a..992d371617 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -2901,7 +2901,7 @@ longer in reversed order.\n")) ly:hairpin::after-line-breaking -> ly:spanner::kill-zero-spanned-time\n\ Dash parameters for slurs and ties are now in dash-definition")) def conv(str): - if re.search(r'\\bar\s*"."', str): + if re.search(r'\\bar\s*"\."', str): stderr_write ("\n") stderr_write (NOT_SMART % _("\\bar \".\" now produces a thick barline.\n")) stderr_write (UPDATE_MANUALLY)