]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/markup-user.ly
Imported Upstream version 2.18.0
[lilypond.git] / input / regression / markup-user.ly
index 24a4fe4b8b568851bd116a70a0eab4e7d33eb172..e9f1bba990b8bc715e4b323d6071b1bb05ba8324 100644 (file)
@@ -1,15 +1,11 @@
-
 \header {
   texidoc = "Users may define non-standard markup commands using
 the @code{define-markup-command} scheme macro."
 }
 
-
 \layout { ragged-right = ##t }
-  
 
-
-\version "2.16.0"
+\version "2.17.6"
 
 #(define-markup-command (upcase paper props str) (string?)
   "Upcase the string characters. Syntax: \\upcase #\"string\""
@@ -17,15 +13,13 @@ the @code{define-markup-command} scheme macro."
 
 \score{
   {
-    c''-\markup \upcase #"hello world"
-                               % produces a "HELLO WORLD" markup
+    c''-\markup \upcase #"hello world in upper case"
   }
 
   \layout {
     \context {
       \Score
-      \override PaperColumn #'keep-inside-line = ##f
+      \override PaperColumn.keep-inside-line = ##f
     }
   }
-
 }