From: Nicolas Sceaux Date: Sun, 11 Nov 2007 11:04:34 +0000 (+0100) Subject: Markup list commands: fix commands documentation wrt \override-lines use. X-Git-Tag: release/2.11.35-1~41^2~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7ae8121c3be06cf3c551d0cf7eadcf1bc5d0809a;p=lilypond.git Markup list commands: fix commands documentation wrt \override-lines use. --- diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 39e483465e..95c9877370 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -1485,14 +1485,14 @@ when @var{label} is not found." (define-builtin-markup-list-command (justified-lines layout props args) (markup-list?) "Like @code{\\justify}, but return a list of lines instead of a single markup. -Use @code{\\override #'(line-width . @var{X})} to set the line width; +Use @code{\\override-lines #'(line-width . @var{X})} to set the line width; @var{X}@tie{}is the number of staff spaces." (space-lines (chain-assoc-get 'baseline-skip props) (wordwrap-markups layout props args #t))) (define-builtin-markup-list-command (wordwrap-lines layout props args) (markup-list?) "Like @code{\\wordwrap}, but return a list of lines instead of a single markup. -Use @code{\\override #'(line-width . @var{X})} to set the line width, +Use @code{\\override-lines #'(line-width . @var{X})} to set the line width, where @var{X} is the number of staff spaces." (space-lines (chain-assoc-get 'baseline-skip props) (wordwrap-markups layout props args #f)))