X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmarkup-user.ly;h=24a4fe4b8b568851bd116a70a0eab4e7d33eb172;hb=26a079ca2393d053315ef8dbef626c897dc9645a;hp=2619982d28945ff1f9a80042824888da947eaff5;hpb=1dff29aea8a32c30f7fcfadf8a00afa0371dbf7a;p=lilypond.git diff --git a/input/regression/markup-user.ly b/input/regression/markup-user.ly index 2619982d28..24a4fe4b8b 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.11.51" +\version "2.16.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 + } + } +}