X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmarkup-user.ly;h=8c94ec6d42a93f9c8939cd5d59e6917bfd56a7e8;hb=169a91c8514e3dcea29d1aa01653a684fb60457d;hp=7afff8e9fcc2fee5e78f758d575210600291e19c;hpb=ecaf73bb03e974018c17e3051b3ac3a805dd1653;p=lilypond.git diff --git a/input/regression/markup-user.ly b/input/regression/markup-user.ly index 7afff8e9fc..8c94ec6d42 100644 --- a/input/regression/markup-user.ly +++ b/input/regression/markup-user.ly @@ -1,22 +1,27 @@ \header { - texidoc = "Own markup commands may be defined by using the - @code{def-markup-command} scheme macro." + texidoc = "Own markup commands may be defined by using the + @code{define-markup-command} scheme macro." - } +} + + +\layout { ragged-right = ##t } + + -\version "2.1.28" % to be updated +\version "2.10.0" -#(def-markup-command (upcase paper props str) (string?) +#(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)))) - -\score { - \notes { - c''-\markup \upcase #"hello world" - % produces a "HELLO WORLD" markup - } - \paper { raggedright = ##t } + (interpret-markup paper props (make-simple-markup (string-upcase str)))) + + +{ + c''-\markup \upcase #"hello world" + % produces a "HELLO WORLD" markup } + +