]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/markup-user.ly
bump .ly \version to 2.10.0
[lilypond.git] / input / regression / markup-user.ly
index 9adb55d74da0a4137d2d22715d1a86139ba99329..8c94ec6d42a93f9c8939cd5d59e6917bfd56a7e8 100644 (file)
@@ -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.4.0" % 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 { 
-     { 
-        c''-\markup \upcase #"hello world"
-        % produces a "HELLO WORLD" markup
-    }
-    \layout { raggedright = ##t }
+  (interpret-markup paper props (make-simple-markup (string-upcase str))))
+
+
+{ 
+  c''-\markup \upcase #"hello world"
+                               % produces a "HELLO WORLD" markup
 }
+
+