X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmy-lily-lexer.cc;h=f412d4d2bad57262756c013d2484d9bd942fda26;hb=557c7f26f0c62bca9eb620a782e6a8e5bef9103e;hp=9eead743d750c6d0ad5cd0da2fb30d389057ac3c;hpb=c2ec642ce42fcf1bbb72bcf9b79b28fe8fa19f0b;p=lilypond.git diff --git a/lily/my-lily-lexer.cc b/lily/my-lily-lexer.cc index 9eead743d7..f412d4d2ba 100644 --- a/lily/my-lily-lexer.cc +++ b/lily/my-lily-lexer.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2003 Han-Wen Nienhuys + (c) 1997--2004 Han-Wen Nienhuys */ #include @@ -39,7 +39,6 @@ static Keyword_ent the_key_tab[]={ {"bar", BAR}, {"breathe", BREATHE}, {"change", CHANGE}, - {"chordmodifiers", CHORDMODIFIERS}, {"chords", CHORDS}, {"clef", CLEF}, {"consists", CONSISTS}, @@ -47,6 +46,7 @@ static Keyword_ent the_key_tab[]={ {"context", CONTEXT}, {"default", DEFAULT}, {"denies", DENIES}, + {"drums", DRUMS}, {"description", DESCRIPTION}, {"figures",FIGURES}, {"grace", GRACE}, @@ -60,7 +60,6 @@ static Keyword_ent the_key_tab[]={ {"midi", MIDI}, {"name", NAME}, {"new", NEWCONTEXT}, - {"newpartcombine", NEWPARTCOMBINE}, {"notes", NOTES}, {"octave", OCTAVE}, {"once", ONCE}, @@ -68,8 +67,6 @@ static Keyword_ent the_key_tab[]={ {"paper", PAPER}, {"partcombine", PARTCOMBINE}, {"partial", PARTIAL}, - {"pitchnames", PITCHNAMES}, - {"property", PROPERTY}, {"relative", RELATIVE}, {"remove", REMOVE}, {"repeat", REPEAT}, @@ -100,7 +97,7 @@ My_lily_lexer::My_lily_lexer () keytable_ = new Keyword_table (the_key_tab); chordmodifier_tab_ = scm_make_vector (gh_int2scm (1), SCM_EOL); - pitchname_tab_ = scm_make_vector (gh_int2scm (1), SCM_EOL); + pitchname_tab_stack_ = SCM_EOL; scopes_ = SCM_EOL; @@ -202,7 +199,7 @@ My_lily_lexer::~My_lily_lexer () void My_lily_lexer::LexerError (char const *s) { - if (include_stack_.empty ()) + if (include_stack_.is_empty ()) { progress_indication (_f ("error at EOF: %s", s)+ String ("\n")); }