From 87dbdd94f3e01957a238666bb532d6d2ba2ab608 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Sat, 6 Aug 2005 04:38:37 +0000 Subject: [PATCH] Fix reversed document strings for \justify and \wordwrap. --- ChangeLog | 5 +++++ scm/define-markup-commands.scm | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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)) -- 2.39.5