From: David Kastrup Date: Sat, 21 Jan 2012 13:24:01 +0000 (+0100) Subject: Let \relative run through articulations for the sake of pitched trills X-Git-Tag: release/2.15.28-1~22 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=67c99515c55da486945a7e461f6733b002b8d60a;p=lilypond.git Let \relative run through articulations for the sake of pitched trills --- diff --git a/lily/music.cc b/lily/music.cc index 02dbe41499..4594451135 100644 --- a/lily/music.cc +++ b/lily/music.cc @@ -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; }