]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix reversed document strings for \justify and \wordwrap.
authorGraham Percival <graham@percival-music.ca>
Sat, 6 Aug 2005 04:38:37 +0000 (04:38 +0000)
committerGraham Percival <graham@percival-music.ca>
Sat, 6 Aug 2005 04:38:37 +0000 (04:38 +0000)
ChangeLog
scm/define-markup-commands.scm

index daa9720efd0087d3dd7274fbe9987592e9dae9cc..4a17ffb5959dd4d969943abd57f0b120e668a639 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-05  Graham Percival  <gperlist@shaw.ca>
+
+       * scm/define-markup-commands: fix reversed justify/wordwrap
+       doc strings.
+
 2005-08-05  Jürgen Reuter  <reuter@ipd.uka.de>
 
        * lily/ligature-engaver.cc, lily/coherent-ligature-engaver.cc,
index fb045fce3e14d3c48f8d1c9c3a67883d6c0e94a7..06bc2ec7f895a035fa681cf86840e2093abd16cc 100644 (file)
@@ -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))