> -Original Message-
> From: Han-Wen Nienhuys [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 19, 2008 9:19 AM
> To: Carl D. Sorensen
> Cc: lilypond-devel
> Subject: Re: csorensen fork of lilypond
>
>
> looks good in principle, but don't use i for
On Wed, Jun 18, 2008 at 5:55 PM, Carl D. Sorensen <[EMAIL PROTECTED]> wrote:
> Han-Wen,
>
> I've finally got the csorensen fork ready for cherry picking. It includes a
> completely revised file input/regression/fret-diagrams.ly, along with
> modifications to scm/define-grobs, scm/define-interfac
> -Original Message-
> From: Wilbert Berendsen [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 19, 2008 4:37 AM
> To: lilypond-devel@gnu.org
> Cc: Carl D. Sorensen
> Subject: Re: csorensen fork of lilypond
>
> Op woensdag 18 juni 2008, schreef Carl D. Sorensen
Op woensdag 18 juni 2008, schreef Carl D. Sorensen:
> for i in fret-props:
> if re.search (i, str):
> stderr_write ('\n')
When you only look for plain strings (as is the case), you could write:
for i in fret_props:
if i in str:
stderr.write ... etc
best regards,
Wilbert Be
__
From: Graham Percival [EMAIL PROTECTED]
Sent: Wednesday, June 18, 2008 8:09 PM
To: Carl D. Sorensen
Cc: lilypond-devel
Subject: Re: csorensen fork of lilypond
On Wed, 18 Jun 2008 09:55:56 -0600
"Carl D. Sorensen" <[EMAIL PROTECTED]> wrote:
> I've never written a c
On Wed, 18 Jun 2008 09:55:56 -0600
"Carl D. Sorensen" <[EMAIL PROTECTED]> wrote:
> I've never written a convert-ly rule before, and I don't know how to
> submit them if I did (I guess I could just change convert-ly on the
> csorensen fork, and then it would be part of the cherry picking).
It's pr