]> 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 d1563e6d8f3c34620a69011c7abb3dea420aff2b..8c94ec6d42a93f9c8939cd5d59e6917bfd56a7e8 100644 (file)
@@ -1,22 +1,27 @@
 
 \header {
 
-    texidoc = "Users may define their own markup commands 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.14" % 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
 }
+
+