On Tue, 9 May 2006 18:07, Han-Wen Nienhuys wrote:
> Han-Wen Nienhuys schreef:
> > Joe Neeman wrote:
> >> OK, here's another try
> >
> > (and I made web successfully).
>
> how is this possible? Did you do "make web-clean" in between?
I did, but I didn't notice this because it didn't cause the build to fail. 
Sorry.

Attached is a quick fix (not properly tested yet, I haven't had time but I'll 
do that now).


>
> [EMAIL PROTECTED]:~/src/lilypond$ lilypond input/typography-demo.ly
> GNU LilyPond 2.9.4
> Processing `input/typography-demo.ly'
> Parsing...
> Interpreting music...
> Preprocessing graphical objects...
> Interpreting music...
> MIDI output to `typography-demo.midi'...
> Track...
> Calculating line breaks... [2]
> warning: can't find line breaking that satisfies constraints
> Drawing systems...
> Calculating page breaks...
> Layout output to `typography-demo.ps'...
Index: ChangeLog
===================================================================
RCS file: /sources/lilypond/lilypond/ChangeLog,v
retrieving revision 1.4938
diff -u -r1.4938 ChangeLog
--- ChangeLog	9 May 2006 02:15:56 -0000	1.4938
+++ ChangeLog	9 May 2006 08:44:32 -0000
@@ -1,5 +1,10 @@
 2006-05-09  Joe Neeman  <[EMAIL PROTECTED]>
 
+	* lily/paper-column-engraver.cc (make_columns): By default, a column
+	needs to be breakable.
+
+2006-05-09  Joe Neeman  <[EMAIL PROTECTED]>
+
 	* scm/define-context-properties.scm:
 	* scm/define-grob-properties.scm:
 	* scm/define-grobs.scm:
Index: lily/paper-column-engraver.cc
===================================================================
RCS file: /sources/lilypond/lilypond/lily/paper-column-engraver.cc,v
retrieving revision 1.14
diff -u -r1.14 paper-column-engraver.cc
--- lily/paper-column-engraver.cc	9 May 2006 02:15:56 -0000	1.14
+++ lily/paper-column-engraver.cc	9 May 2006 08:44:32 -0000
@@ -57,6 +57,7 @@
   SCM m = now_mom ().smobbed_copy ();
   p1->set_property ("when", m);
   p2->set_property ("when", m);
+  p1->set_property ("line-break-permission", ly_symbol2scm ("allow"));
 
   set_columns (p1, p2);
 }
_______________________________________________
lilypond-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to