]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix compile.
authorPatrick McCarty <pnorcks@gmail.com>
Fri, 13 Aug 2010 22:56:51 +0000 (15:56 -0700)
committerPatrick McCarty <pnorcks@gmail.com>
Fri, 13 Aug 2010 22:57:14 +0000 (15:57 -0700)
Any double quotes in docstrings must be escaped.

Also, clean up line breaks in the example.

scm/define-markup-commands.scm

index 5d11883b08419d3fb99282c298bdabb518ba6ad1..d863d16200343a45bb5f086eeaf433f209371a39 100644 (file)
@@ -286,11 +286,13 @@ thickness, and @code{offset} to determine line y-offset.
 
 @lilypond[verbatim,quote]
 \\markup \\fill-line {
-  \\underline "underlined"
-  \\override #'(offset . 5) \\override #'(thickness . 1) \\underline
-"underlined"
-  \\override #'(offset . 1) \\override #'(thickness . 5) \\underline
-"underlined"
+  \\underline \"underlined\"
+  \\override #'(offset . 5)
+  \\override #'(thickness . 1)
+  \\underline \"underlined\"
+  \\override #'(offset . 1)
+  \\override #'(thickness . 5)
+  \\underline \"underlined\"
 }
 @end lilypond"
   (let* ((thick (ly:output-def-lookup layout 'line-thickness))