Mark Polesky wrote: > Okay, I updated the \relative syntax in the docs, > regtests, and scripts (there were two little instances in > the scripts/ directory). There are 37 remaining > instances; they are all in the translated docs except one > which is at the end of ly/relative-octave-music.cc. I > modified the regex to catch multiple spaces; here's the > current state of things: > > $ regex='\\relative \...@\?{' > > $ git grep "$regex" | wc -l > 37
In the interest of mailing-list archive readability, here's a version of the regex that shouldn't get mangled (it finds all the same matches). $ regex='\\relative * @\?{' $ git grep "$regex" | wc -l 37 _______________________________________________ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel