Re: Case of 'c' in partcombine

2017-05-29 Thread Carl Sorensen
On 5/29/17 2:49 PM, "lilypond-devel on behalf of Winston, Charles R." wrote: > > >> On May 29, 2017, at 4:27 PM, David Kastrup wrote: >> >> Charles Winston writes: >>

Re: Create engravers for merging rests (issue 321930043 by horndud...@gmail.com)

2017-05-29 Thread thomasmorley65
I think this one warrants an entry in changes. https://codereview.appspot.com/321930043/diff/140001/scm/scheme-engravers.scm File scm/scheme-engravers.scm (right): https://codereview.appspot.com/321930043/diff/140001/scm/scheme-engravers.scm#newcode152 scm/scheme-engravers.scm:152: (define

Re: Back in the Pond

2017-05-29 Thread David Kastrup
Gianmaria Lari writes: > Trevor wrote: > > >> I'll definitely turn on my financial contribution again. >> > > what's the better way to give a financial contribution? In Europe's EURO zone (guessing from your name, that would likely be the case) SEPA transfers are

Re: Case of 'c' in partcombine

2017-05-29 Thread Winston, Charles R.
> On May 29, 2017, at 4:27 PM, David Kastrup wrote: > > Charles Winston writes: > >>> On May 29, 2017, at 1:40 PM, David Kastrup wrote: >>> >>> Charles Winston writes: >>> Could you explain the following line

Re: Case of 'c' in partcombine

2017-05-29 Thread David Kastrup
Charles Winston writes: >> On May 29, 2017, at 1:40 PM, David Kastrup wrote: >> >> Charles Winston writes: >> >>> Could you explain the following line which appears all over convert >>> rules.py: >>> >>> str = re.sub (r“str1”,

Re: Case of 'c' in partcombine

2017-05-29 Thread Charles Winston
> On May 29, 2017, at 1:40 PM, David Kastrup wrote: > > Charles Winston writes: > >> Could you explain the following line which appears all over convert rules.py: >> >> str = re.sub (r“str1”, r“str2”, str) >> >> I want to change all instances of

Re: Case of 'c' in partcombine

2017-05-29 Thread David Kastrup
Charles Winston writes: > Could you explain the following line which appears all over convert rules.py: > > str = re.sub (r“str1”, r“str2”, str) > > I want to change all instances of “partcombine...” to > “partCombine…". If I were to do this: > > str = re.sub

Re: Correct accidental type for mensural fictas (issue 297540043 by philehol...@googlemail.com)

2017-05-29 Thread PhilEHolmes
Something of a hack, but makes the example acceptable as an example of Lilypond engraving. Note: I forgot to reset git-cl, so the Rietveld issue is now two issues. Still reviewable, I hope. https://codereview.appspot.com/297540043/ ___

Re: Case of 'c' in partcombine

2017-05-29 Thread Charles Winston
Could you explain the following line which appears all over convert rules.py: str = re.sub (r“str1”, r“str2”, str) I want to change all instances of “partcombine...” to “partCombine…". If I were to do this: str = re.sub (r“partcombine”, r“partCombine”, str) Would that work? Charles > On

Re: Case of 'c' in partcombine

2017-05-29 Thread David Kastrup
Charles Winston writes: > Hi all, > > This is a pretty simple question but for some reason I can’t find a > definitive answer. I’m adding a rule to convertrules.py, but I need to > know the version for the rule. Where can I find what the latest > version of LilyPond is? The

Re: Case of 'c' in partcombine

2017-05-29 Thread Charles Winston
Hi all, This is a pretty simple question but for some reason I can’t find a definitive answer. I’m adding a rule to convertrules.py, but I need to know the version for the rule. Where can I find what the latest version of LilyPond is? Charles > On May 25, 2017, at 2:33 PM, Carl Sorensen