X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fmarkup-user.ly;h=e9f1bba990b8bc715e4b323d6071b1bb05ba8324;hb=0687038a4e9b617bde68cbad29cf0385caef1a99;hp=c156c47cd8a97aa40a118a917e7643ec324fb7e4;hpb=ac6c83f047635535d0481a15654c13e776334dc6;p=lilypond.git diff --git a/input/regression/markup-user.ly b/input/regression/markup-user.ly index c156c47cd8..e9f1bba990 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.10.0" +\version "2.17.6" #(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 + } + } } - -