Re: Quotes around \consists argument?

2022-04-24 Thread Werner LEMBERG
> \new Staff    not  \new "Staff" > \override NoteHead.color  not  \override "NoteHead"."color" > \repeat volta not  \repeat "volta" > \change Staff not  \change "Staff" > > OK to drop that policy? I can easily make a patch to sed out all > existing

Re: Quotes around \consists argument?

2022-04-24 Thread David Kastrup
Jean Abou Samra writes: > Folks, > > See > https://gitlab.com/lilypond/lilypond/-/merge_requests/1323#note_921986589 > > The CG mandates quotes around the argument of \consists. > (https://lilypond.org/doc/v2.23/Documentation/contributor/lilypond-formatting) > > I find that odd, since the quotes

Quotes around \consists argument?

2022-04-24 Thread Jean Abou Samra
Folks, See https://gitlab.com/lilypond/lilypond/-/merge_requests/1323#note_921986589 The CG mandates quotes around the argument of \consists. (https://lilypond.org/doc/v2.23/Documentation/contributor/lilypond-formatting) I find that odd, since the quotes are unnecessary, and there are lots

etags regex for Lilypond & LY_DEFINE* tags

2022-04-24 Thread John Wheeler
To facilitate using emacs xref in lilypond work, I wrote a script to assemble the needed TAGS file.  The unique feature of the script is that it includes the regex to find tags in Lilypond (.ly) files as well as tags defined in LY_DEFINE*  macros, in addition to the normal c++, python, lisp,

Re: Quotes around \consists argument?

2022-04-24 Thread David Kastrup
Jean Abou Samra writes: > Le 24/04/2022 à 16:09, David Kastrup a écrit : >> I think we had this discussion at one time, possibly resulting in making >> this have a unique style at least in documentation. > > > > The previous discussion I could find is > > https://codereview.appspot.com/6461098/

Re: Quotes around \consists argument?

2022-04-24 Thread Jean Abou Samra
Le 24/04/2022 à 16:09, David Kastrup a écrit : I think we had this discussion at one time, possibly resulting in making this have a unique style at least in documentation. The previous discussion I could find is https://codereview.appspot.com/6461098/ Which does not exactly suggest that a

Re: Quotes around \consists argument?

2022-04-24 Thread David Kastrup
Werner LEMBERG writes: >> \new Staff    not  \new "Staff" >> \override NoteHead.color  not  \override "NoteHead"."color" >> \repeat volta not  \repeat "volta" >> \change Staff not  \change "Staff" >> >> OK to drop that policy? I can easily make a patch to sed

Re: Quotes around \consists argument?

2022-04-24 Thread Jean Abou Samra
Le 24/04/2022 à 17:41, David Kastrup a écrit : Werner LEMBERG writes: \new Staff    not  \new "Staff" \override NoteHead.color  not  \override "NoteHead"."color" \repeat volta not  \repeat "volta" \change Staff not  \change "Staff" OK to drop that