]> git.donarmstrong.com Git - lilypond.git/commitdiff
Let \relative run through articulations for the sake of pitched trills
authorDavid Kastrup <dak@gnu.org>
Sat, 21 Jan 2012 13:24:01 +0000 (14:24 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 25 Jan 2012 15:53:25 +0000 (16:53 +0100)
lily/music.cc

index 02dbe41499e644d184c356254933e4c1397fddfa..45944511359fb3fe9f0f2137feb7fe76f4188ad9 100644 (file)
@@ -161,6 +161,7 @@ Music::generic_to_relative_octave (Pitch last)
   if (Music *m = unsmob_music (elt))
     last = m->to_relative_octave (last);
 
+  (void) music_list_to_relative (get_property ("articulations"), last, true);
   last = music_list_to_relative (get_property ("elements"), last, false);
   return last;
 }