CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Graham Percival <[EMAIL PROTECTED]>     05/08/08 22:47:23

Modified files:
        Documentation/user: programming-interface.itely 
        .              : ChangeLog 
        scm            : define-markup-commands.scm 

Log message:
        Fix compile bug, add linewidth info to \justify.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/programming-interface.itely.diff?tr1=1.40&tr2=1.41&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3980&tr2=1.3981&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scm/define-markup-commands.scm.diff?tr1=1.105&tr2=1.106&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3980 lilypond/ChangeLog:1.3981
--- lilypond/ChangeLog:1.3980   Mon Aug  8 08:14:41 2005
+++ lilypond/ChangeLog  Mon Aug  8 22:47:23 2005
@@ -1,3 +1,10 @@
+2005-08-08  Graham Percival  <[EMAIL PROTECTED]>
+
+       * Documentation/user/programming-interface.itely: fix @{ @}.
+
+       * scm/define-markup-commands.scm: add linewidth info to
+       \justify and \wordwrap.
+
 2005-08-08  Mats Bengtsson  <[EMAIL PROTECTED]>
 
        * Documentation/user/programming-interface.itely (Markup
Index: lilypond/Documentation/user/programming-interface.itely
diff -u lilypond/Documentation/user/programming-interface.itely:1.40 
lilypond/Documentation/user/programming-interface.itely:1.41
--- lilypond/Documentation/user/programming-interface.itely:1.40        Mon Aug 
 8 08:18:05 2005
+++ lilypond/Documentation/user/programming-interface.itely     Mon Aug  8 
22:47:23 2005
@@ -455,8 +455,8 @@
 @noindent
 is equivalent to:
 @example
-\markup \column { \line @{ \bold \italic "hello" \raise #0.4 "world" @}
-                  \bigger \line @{ foo bar baz @} }
+\markup \column @{ \line @{ \bold \italic "hello" \raise #0.4 "world" @}
+                  \bigger \line @{ foo bar baz @} @}
 @end example
 
 @noindent
Index: lilypond/scm/define-markup-commands.scm
diff -u lilypond/scm/define-markup-commands.scm:1.105 
lilypond/scm/define-markup-commands.scm:1.106
--- lilypond/scm/define-markup-commands.scm:1.105       Sat Aug  6 04:38:37 2005
+++ lilypond/scm/define-markup-commands.scm     Mon Aug  8 22:47:23 2005
@@ -466,12 +466,15 @@
     (stack-lines DOWN 0.0 baseline-skip lines)))
 
 (def-markup-command (justify layout props args) (markup-list?)
-  "Like wordwrap, but with lines stretched to justify the margins."
+  "Like wordwrap, but with lines stretched to justify the margins.
+Use @code{\override #'(linewidth . X)} to set linewidth, where X
+is the number of staff spaces."
 
   (wordwrap-markups layout props args #t))
 
 (def-markup-command (wordwrap layout props args) (markup-list?)
-  "Simple wordwrap"
+  "Simple wordwrap.  Use @code{\override #'(linewidth . X)} to set
+linewidth, where X is the number of staff spaces."
 
   (wordwrap-markups layout props args #f))
 


_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to