From: David Kastrup Date: Fri, 21 Oct 2011 21:11:07 +0000 (+0200) Subject: Avoid followup error for \endSpanners X-Git-Tag: release/2.15.15-1~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e34e22ca0066617732a35aba56b06f34cd46a1c6;p=lilypond.git Avoid followup error for \endSpanners --- diff --git a/ly/music-functions-init.ly b/ly/music-functions-init.ly index 32b4614ee2..185ee7be38 100644 --- a/ly/music-functions-init.ly +++ b/ly/music-functions-init.ly @@ -313,7 +313,9 @@ without the need of a specific end spanner.") end-ev-chord)))) total) - (ly:input-message location (_ "argument endSpanners is not an EventChord: ~a" music)))) + (begin + (ly:input-message location (_ "argument endSpanners is not an EventChord: ~a" music)) + music)))