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: 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: 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

Re: Case of 'c' in partcombine

2017-05-25 Thread Charles Winston
> On May 25, 2017, at 11:54 AM, Charles Winston wrote: > > >> On May 25, 2017, at 11:48 AM, Carl Sorensen wrote: >> >> On 5/25/17 8:40 AM, "lilypond-devel on behalf of Charles Winston" >>

Re: Case of 'c' in partcombine

2017-05-25 Thread Carl Sorensen
On 5/25/17 9:54 AM, "Charles Winston" wrote: > >Is there a reason to ignore case? The goal is to change the lowercase >Œc¹s to uppercase in every instance of ³partcombine². It seems to me that >ignoring case will give me instances that I do not need to change. I would do it

Re: Case of 'c' in partcombine

2017-05-25 Thread Federico Bruni
Il giorno gio 25 mag 2017 alle 17:48, Charles Winston ha scritto: Is there any way to use git grep to search for instances of a string, but leave out all instances from some specified directory? I ask because there are an insane amount of instances of the string in

Re: Case of 'c' in partcombine

2017-05-25 Thread Charles Winston
> On May 25, 2017, at 11:48 AM, Carl Sorensen wrote: > > On 5/25/17 8:40 AM, "lilypond-devel on behalf of Charles Winston" > chazwi...@gmail.com> wrote: > >> Hey developers, >> >> I am working on my first

Re: Case of 'c' in partcombine

2017-05-25 Thread David Kastrup
Charles Winston writes: > Is there any way to use git grep to search for instances of a string, > but leave out all instances from some specified directory? I ask > because there are an insane amount of instances of the string in > Documentation, and it’s clouding my ability

Re: Case of 'c' in partcombine

2017-05-25 Thread Charles Winston
>> To: <lilypond-devel@gnu.org> >> Sent: Thursday, May 25, 2017 3:40 PM >> Subject: Case of 'c' in partcombine >> >> >>> Hey developers, >>> >>> I am working on my first patch—it is resolving a very simple issue from the >>

Re: Case of 'c' in partcombine

2017-05-25 Thread Carl Sorensen
On 5/25/17 8:40 AM, "lilypond-devel on behalf of Charles Winston" wrote: >Hey developers, > >I am working on my first patch‹it is resolving a very simple issue from >the tracker. The case of the Œc¹ in

Re: Case of 'c' in partcombine

2017-05-25 Thread Charles Winston
> On May 25, 2017, at 11:29 AM, Phil Holmes <m...@philholmes.net> wrote: > > - Original Message - From: "Charles Winston" <chazwi...@gmail.com> > To: <lilypond-devel@gnu.org> > Sent: Thursday, May 25, 2017 3:40 PM > Subject: Case of 'c' in pa

Re: Case of 'c' in partcombine

2017-05-25 Thread Phil Holmes
- Original Message - From: "Charles Winston" <chazwi...@gmail.com> To: <lilypond-devel@gnu.org> Sent: Thursday, May 25, 2017 3:40 PM Subject: Case of 'c' in partcombine Hey developers, I am working on my first patch—it is resolving a very simple issue from

Case of 'c' in partcombine

2017-05-25 Thread Charles Winston
Hey developers, I am working on my first patch—it is resolving a very simple issue from the tracker. The case of the ‘c’ in partcombine is inconsistent and can result in some confusion. For example: \partcombine, \partcombineApart, and others like this use the lower-case ‘c' … but