From: hanwen Date: Sat, 21 Feb 2004 01:07:24 +0000 (+0000) Subject: new file. X-Git-Tag: release/2.1.27~21 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=eb6cb8dc4b208b92748dc12dba0d6bd45c3e4a2d;p=lilypond.git new file. --- diff --git a/ChangeLog b/ChangeLog index 7d32442c92..b6440fe3e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-02-21 Han-Wen Nienhuys + * input/regression/quote.ly: new file. + * lily/sequential-iterator.cc (process): only process if moment >= 0. * lily/parser.yy (command_element): \quote DURATION NAME: support diff --git a/input/regression/quote.ly b/input/regression/quote.ly new file mode 100644 index 0000000000..f8a47044bc --- /dev/null +++ b/input/regression/quote.ly @@ -0,0 +1,21 @@ +\header +{ + + texidoc = "With @code{\quote}, fragments of previously entered +music may be quoted. " + +} +\version "2.1.25" + +bla = \notes\relative c' { fis4 fis fis fis } + +#(add-quotable "bla" bla) + +\score { + \notes \relative c'' { + \set Score.quotes = \musicQuotes + + c8 d8 \quote 2 "bla" es8 gis + } +} +