]> git.donarmstrong.com Git - lilypond.git/commitdiff
Eliminate faulty barcheck warning in articulate.
authorPeter Chubb <peter@chubb.wattle.id.au>
Mon, 2 May 2011 12:52:03 +0000 (13:52 +0100)
committerGraham Percival <graham@percival-music.ca>
Mon, 2 May 2011 12:52:03 +0000 (13:52 +0100)
ly/articulate.ly

index 5afb4adfe7d132e71b35b4bced2c03244ab1b709..62c0abd4ea69e9f04aae9225b22b0519d37035b9 100644 (file)
 
       ((BeamEvent) ; throw away beam events, or they'll be duplicated by turn or trill
        (loop factor newelements tail actions))
-      ((LineBreakEvent) ; pass through linebreak events.
-       (loop (cons 1 1) (cons e newelements) tail actions))
-      ((FingeringEvent) ; and fingering events too.
-       (loop factor newelements tail actions))
-
-      ((BreathingEvent) ; throw away BreathingEvent ---
-       ; should really shorten previous note a little.
-       (loop (cons 1 1) (cons e newelements) tail actions))
-
-      ((TieEvent)
-       (loop (cons 1 1) (cons e newelements) tail actions))
-
-      ((SkipEvent)
-       (loop (cons 1 1) (cons e newelements) tail actions))
 
-      ((RestEvent)
+      ((LineBreakEvent FingeringEvent MarkEvent BreathingEvent TieEvent SkipEvent RestEvent) ; pass through some events.
        (loop (cons 1 1) (cons e newelements) tail actions))
 
       ((ArticulationEvent)