From 32c1b89d962855182359ac2e4d7136da15746a53 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Thu, 4 Sep 2014 20:48:06 +0200 Subject: [PATCH] Issue 3855: programming error with \markup \fill-line { \vspace #10 } --- scm/define-markup-commands.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index e0b8982ea2..e16a89e7aa 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -1248,8 +1248,9 @@ words varies according to their relative lengths." (let* ((orig-stencils (interpret-markup-list layout props args)) (stencils (map (lambda (stc) - (if (ly:stencil-empty? stc) - point-stencil + (if (ly:stencil-empty? stc X) + (ly:make-stencil (ly:stencil-expr stc) + '(0 . 0) (ly:stencil-extent stc Y)) stc)) orig-stencils)) (text-widths -- 2.39.5