From: Patrick McCarty Date: Sat, 11 Dec 2010 23:59:08 +0000 (-0800) Subject: lilypond-words: Fix note-name detection. X-Git-Tag: release/2.13.43-1~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4e06a1fa15844c780efc808b1be55ddd3046aee9;p=lilypond.git lilypond-words: Fix note-name detection. Thanks to Jay Anderson for noticing the problem. --- diff --git a/scripts/build/lilypond-words.py b/scripts/build/lilypond-words.py index ef6328fe1a..4768c5dfea 100644 --- a/scripts/build/lilypond-words.py +++ b/scripts/build/lilypond-words.py @@ -47,21 +47,8 @@ for name in ['ly/chord-modifiers-init.ly', keywords += [w for w in re.findall (r"(?m)^\s*\"?([a-zA-Z]+)\"?\s*=", s)] # note names -for name in ['ly/catalan.ly', - 'ly/deutsch.ly', - 'ly/drumpitch-init.ly', - 'ly/english.ly', - 'ly/espanol.ly', - 'ly/italiano.ly', - 'ly/makam.ly', - 'ly/nederlands.ly', - 'ly/norsk.ly', - 'ly/portugues.ly', - 'ly/suomi.ly', - 'ly/svenska.ly', - 'ly/vlaams.ly']: - s = open (name, 'r').read () - note_names += [n for n in re.findall (r"(?m)^\s*\(([a-z]+)[^l]+ly:make-pitch", s)] +s = open ('scm/define-note-names.scm', 'r').read () +note_names += [n for n in re.findall (r"(?m)^\s*\(([a-z]+)\s+\.\s+,\(ly:make-pitch", s)] # reserved words for name in ['ly/engraver-init.ly',