From: David Kastrup Date: Fri, 26 Oct 2012 12:29:07 +0000 (+0200) Subject: Add regtest for quoted identifiers X-Git-Tag: release/2.17.28-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=694ad77ed295eb7dc19fcdeee5040a63128140c3;p=lilypond.git Add regtest for quoted identifiers --- diff --git a/input/regression/identifier-quoted.ly b/input/regression/identifier-quoted.ly new file mode 100644 index 0000000000..fa60533851 --- /dev/null +++ b/input/regression/identifier-quoted.ly @@ -0,0 +1,26 @@ +\header +{ + +texidoc = "Music identifiers containing arbitrary characters may be +initialized using +@example +\"violin1\" = @{ c''4 c'' c'' c'' @} +@end example +and used as: +@example +\\new Voice @{ \\\"violin1\" @} +@end example +" + +} + +\version "2.17.28" + +"violin1" = { c''4 c'' c'' c'' } +"violin2" = { a'4 a' a' a' } + +\layout { ragged-right = ##t } + +{ + << \"violin1" \\ \"violin2" >> +}