From 694ad77ed295eb7dc19fcdeee5040a63128140c3 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Fri, 26 Oct 2012 14:29:07 +0200 Subject: [PATCH] Add regtest for quoted identifiers --- input/regression/identifier-quoted.ly | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 input/regression/identifier-quoted.ly 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" >> +} -- 2.39.2