From: gpercival Date: Sat, 6 Aug 2005 04:38:37 +0000 (+0000) Subject: Fix reversed document strings for \justify and \wordwrap. X-Git-Tag: release/2.6.4~17^2~117 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a4017f81fcd5a00b178f26ec84c3992263cfcd2d;p=lilypond.git Fix reversed document strings for \justify and \wordwrap. --- diff --git a/ChangeLog b/ChangeLog index daa9720efd..4a17ffb595 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-05 Graham Percival + + * scm/define-markup-commands: fix reversed justify/wordwrap + doc strings. + 2005-08-05 Jürgen Reuter * lily/ligature-engaver.cc, lily/coherent-ligature-engaver.cc, diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index fb045fce3e..06bc2ec7f8 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -466,12 +466,12 @@ determines the space between each markup in @var{args}." (stack-lines DOWN 0.0 baseline-skip lines))) (def-markup-command (justify layout props args) (markup-list?) - "Simple wordwrap" + "Like wordwrap, but with lines stretched to justify the margins." (wordwrap-markups layout props args #t)) (def-markup-command (wordwrap layout props args) (markup-list?) - "Like wordwrap, but with lines stretched to justify the margins." + "Simple wordwrap" (wordwrap-markups layout props args #f))