]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/articulate.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / ly / articulate.ly
index 7ed95fb8700f4650e6b995d21746fed42a8dedf5..b7174a72c72548bb7802aebb5cdf3574cf9eed6c 100644 (file)
@@ -87,6 +87,8 @@
 %  * Add Mordents (reported by Patrick Karl)
 %
 
+\version "2.14.0"
+
 #(use-modules (ice-9 debug))
 #(use-modules (scm display-lily))
 
 
       ((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)