]> git.donarmstrong.com Git - lilypond.git/commitdiff
Markup list commands: fix commands documentation wrt \override-lines use.
authorNicolas Sceaux <nicolas.sceaux@free.fr>
Sun, 11 Nov 2007 11:04:34 +0000 (12:04 +0100)
committerNicolas Sceaux <nicolas.sceaux@free.fr>
Sun, 11 Nov 2007 11:04:34 +0000 (12:04 +0100)
scm/define-markup-commands.scm

index 39e483465e866025bc6b6fe0907ee1d35252929b..95c9877370ec8207b0a82b8f7d5129e9cc55bd4d 100644 (file)
@@ -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)))