From 9a5e5c31b4d766c4980ed7f001f99fd331e28811 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Fri, 13 Aug 2010 15:56:51 -0700 Subject: [PATCH] Fix compile. Any double quotes in docstrings must be escaped. Also, clean up line breaks in the example. --- scm/define-markup-commands.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 5d11883b08..d863d16200 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -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)) -- 2.39.2