X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmarkup-user.ly;h=63b1450af00a8f8e29348595fef7a37be6f335d1;hb=bf707a03756021f69e3f5d1a8246639a6a601099;hp=c156c47cd8a97aa40a118a917e7643ec324fb7e4;hpb=ecf2b5e9dcfa7654803fb0050d7127e0ec7fd934;p=lilypond.git diff --git a/input/regression/markup-user.ly b/input/regression/markup-user.ly index c156c47cd8..63b1450af0 100644 --- a/input/regression/markup-user.ly +++ b/input/regression/markup-user.ly @@ -9,16 +9,23 @@ the @code{define-markup-command} scheme macro." -\version "2.10.0" +\version "2.12.0" #(define-markup-command (upcase paper props str) (string?) "Upcase the string characters. Syntax: \\upcase #\"string\"" (interpret-markup paper props (make-simple-markup (string-upcase str)))) - -{ - c''-\markup \upcase #"hello world" +\score{ + { + c''-\markup \upcase #"hello world" % produces a "HELLO WORLD" markup -} + } + \layout { + \context { + \Score + \override PaperColumn #'keep-inside-line = ##f + } + } +}