CVSROOT: /cvsroot/lilypond
Module name: lilypond
Branch:
Changes by: Han-Wen Nienhuys <[EMAIL PROTECTED]> 05/08/19 19:54:02
Modified files:
. : ChangeLog
lily : ly-module.cc percent-repeat-engraver.cc
Log message:
(try_music): don't print warning
about not being able to handle repeat.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.4044&tr2=1.4045&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/lily/ly-module.cc.diff?tr1=1.52&tr2=1.53&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/lily/percent-repeat-engraver.cc.diff?tr1=1.49&tr2=1.50&r1=text&r2=text
Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.4044 lilypond/ChangeLog:1.4045
--- lilypond/ChangeLog:1.4044 Fri Aug 19 18:48:05 2005
+++ lilypond/ChangeLog Fri Aug 19 19:54:01 2005
@@ -1,3 +1,8 @@
+2005-08-19 Han-Wen Nienhuys <[EMAIL PROTECTED]>
+
+ * lily/percent-repeat-engraver.cc (try_music): don't print warning
+ about not being able to handle repeat.
+
2005-08-19 Jan Nieuwenhuizen <[EMAIL PROTECTED]>
* Documentation/user/examples.itely (Piano templates):
Index: lilypond/lily/ly-module.cc
diff -u lilypond/lily/ly-module.cc:1.52 lilypond/lily/ly-module.cc:1.53
--- lilypond/lily/ly-module.cc:1.52 Fri Aug 19 12:07:35 2005
+++ lilypond/lily/ly-module.cc Fri Aug 19 19:54:01 2005
@@ -156,7 +156,7 @@
void
make_stand_in_procs_weak ()
{
- if (SCM_IS_WHVEC_ANY(scm_stand_in_procs))
+ if (scm_weak_key_hash_table_p (scm_stand_in_procs) == SCM_BOOL_T)
{
#if (SCM_MINOR_VERSION == 7)
perform_gc_kludge = false;
Index: lilypond/lily/percent-repeat-engraver.cc
diff -u lilypond/lily/percent-repeat-engraver.cc:1.49
lilypond/lily/percent-repeat-engraver.cc:1.50
--- lilypond/lily/percent-repeat-engraver.cc:1.49 Fri Aug 19 10:13:08 2005
+++ lilypond/lily/percent-repeat-engraver.cc Fri Aug 19 19:54:02 2005
@@ -107,11 +107,8 @@
else if (Moment (2) * meas_len == body_length_)
repeat_sign_type_ = DOUBLE_MEASURE;
else
- {
- warning (_f ("can't handle a percent repeat of length: %s",
- body_length_.to_string ()));
- return false;
- }
+ return false;
+
repeat_ = m;
_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs