X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmarkup-user.ly;h=db8bd1b00afcad8e1d652608c7d3a191bdbe70a8;hb=6f4918cf29edf603cc5da0775cea3d9697cff4ee;hp=637734706063cfddee3c1efa8055dd108ae1e425;hpb=bb91de5b7f8c4f753452730101c2422946067cc3;p=lilypond.git diff --git a/input/regression/markup-user.ly b/input/regression/markup-user.ly index 6377347060..db8bd1b00a 100644 --- a/input/regression/markup-user.ly +++ b/input/regression/markup-user.ly @@ -1,24 +1,25 @@ - \header { texidoc = "Users may define non-standard markup commands using the @code{define-markup-command} scheme macro." } - \layout { ragged-right = ##t } - - -\version "2.12.0" +\version "2.14.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" - % produces a "HELLO WORLD" markup +\score{ + { + c''-\markup \upcase #"hello world in upper case" + } + + \layout { + \context { + \Score + \override PaperColumn #'keep-inside-line = ##f + } + } } - -