On Sat, 12 May 2001, Han-Wen Nienhuys wrote:
> [EMAIL PROTECTED] writes:
>
> > The bugfix attached should patch the problem of the half-notes
> > overwriting the dots of dotted notes which are in unison, and the stems are
> > forced.
> >
> > (My first patch contribution!).
>
> looks good. Maybe you can write a test-file (see input/regression for
> inspiration.)
Hope the attached is suitable :).
---------------------------------------------------------------------
| Name: Tim Nelson | Because the Creator is, |
| E-mail: [EMAIL PROTECTED] | I am |
---------------------------------------------------------------------
----BEGIN GEEK CODE BLOCK----
Version 3.1
GCS d? s: a-- C++>++++$ US+ P++ L++ E- W+++ N+ w+> M-- V- Y+>++
PGP->++ R(+) !tv B++ DI++++ D+ G e>++ h!/* y-
-----END GEEK CODE BLOCK-----
% Tests whether dots clash when stems are forced.
\version "1.3.148"
Tenor = \notes{
\key bes\major
bes8. c'16 d'4
} % Tenor
Bass = \notes{
\key bes\major
bes2
} % Bass
\score{ <
\context Staff = Staff2 <
\clef "bass"
\context Voice = "Tenor" {
\stemUp
\Tenor
}
\context Voice = "Bass" {
\stemDown
\Bass
}
>
>
}