]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/markup-user.ly
(start_translation_timestep): split
[lilypond.git] / input / regression / markup-user.ly
index 1a12d9a059d294d46ff632574dcb77f0f9924702..9adb55d74da0a4137d2d22715d1a86139ba99329 100644 (file)
@@ -7,16 +7,16 @@
 
       }
 
-\version "2.2.0" % to be updated
+\version "2.4.0" % to be updated
 
 #(def-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 }
+    \layout { raggedright = ##t }
 }