X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstencil-interpret.cc;h=9b9ed4d6a383d940d6d6d893cd1f49df211f3f98;hb=f5cb091a771d6a162e89f04639f124f93a19ae6d;hp=e4387345361da7ba061cac04386d361eebeef56a;hpb=68d7330f72a14a8df49c49ed1566179248096092;p=lilypond.git diff --git a/lily/stencil-interpret.cc b/lily/stencil-interpret.cc index e438734536..9b9ed4d6a3 100644 --- a/lily/stencil-interpret.cc +++ b/lily/stencil-interpret.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2006 Han-Wen Nienhuys + (c) 2005--2009 Han-Wen Nienhuys */ #include "stencil.hh" @@ -21,6 +21,11 @@ interpret_stencil_expression (SCM expr, SCM head = scm_car (expr); + if (head == ly_symbol2scm ("delay-stencil-evaluation")) + { + interpret_stencil_expression (scm_force (scm_cadr (expr)), func, func_arg, o); + return; + } if (head == ly_symbol2scm ("translate-stencil")) { o += ly_scm2offset (scm_cadr (expr));