[EMAIL PROTECTED] writes:
>
> [EMAIL PROTECTED] said:
> > > I think \property Score.timeSignatureStyle = "C" would be
> > > a good candidate for a default behaviour, what do you think?
>
> > Yep, but not in its current implementation ( timeSignatureStyle = "C"
> > would print C's for every time sig.)
>
> No it doesn't, at least not here. I just tried both pl 17 and pl 17.mb1
> (mb2 wouldn't make any difference) on input/test/time.fly and it gives
> C and C2 for 4/4 and 2/2 but the rest of the signatures are written
> numerically, just as desired.
>
> I know that Lookup::accidental() got very hairy, but I don't know
> of any better solution right now.
>
> When compiling pl17 on DEC Alpha gcc version 2.7.2.3, I got the
> following errors, changing to gcc 2.8.1 solved the problem (as well as
> the problem with dstream.cc mentioned in INSTALL.txt):
I will fix this in pl 18: could you test the following patch?
--- dictionary.hh~ Mon Oct 19 11:09:05 1998
+++ dictionary.hh Fri Oct 23 11:19:58 1998
@@ -100,7 +100,6 @@
nexti = (nexti + j*j)%sz;
}
- finish:
return retval;
}
};
@@ -181,7 +180,10 @@
V operator [] (String k) const
{
- return elem (k);
+ V retval;
+ if (!elem_b (k))
+ return retval ;
+ retval ((Dictionary<V> *) this)->elem (k)
}
V remove (String s)
>
Please keep in mind that we will definitely require gcc 2.8 / egcs for
LilyPond 1.1
--
Han-Wen Nienhuys, [EMAIL PROTECTED] ** GNU LilyPond - The Music Typesetter
http://www.cs.uu.nl/people/hanwen/lilypond/index.html