From: David Kastrup Date: Mon, 12 Sep 2011 16:27:46 +0000 (+0200) Subject: lily/lexer.ll: Add a backslash to be more syntax-aware editor friendly. X-Git-Tag: release/2.15.12-1~56 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b1f6af9ac7f393ad81d228a69724efc7c6a8c40c;p=lilypond.git lily/lexer.ll: Add a backslash to be more syntax-aware editor friendly. --- diff --git a/lily/lexer.ll b/lily/lexer.ll index 1cb8e33b8e..b445e707d7 100644 --- a/lily/lexer.ll +++ b/lily/lexer.ll @@ -595,7 +595,7 @@ BOM_UTF8 \357\273\277 [{}] { return YYText ()[0]; } - [^#{}"\\ \t\n\r\f]+ { + [^#{}\"\\ \t\n\r\f]+ { string s (YYText ()); char c = s[s.length () - 1];