From: fred Date: Tue, 26 Mar 2002 23:55:24 +0000 (+0000) Subject: lilypond-1.3.85 X-Git-Tag: release/1.5.59~1332 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1372b44d08a4d558e05ab067e044c14fa5ea9a30;p=lilypond.git lilypond-1.3.85 --- diff --git a/lily/music-iterator.cc b/lily/music-iterator.cc index bfa597527b..b1697e199e 100644 --- a/lily/music-iterator.cc +++ b/lily/music-iterator.cc @@ -134,19 +134,19 @@ Music_iterator::static_get_iterator_p (Music *m) p = new Request_chord_iterator; else if (dynamic_cast (m)) p = new Lyric_combine_music_iterator; - else if (dynamic_cast (m)) + else if (dynamic_cast (m)) p = new Simultaneous_music_iterator; - else if (dynamic_cast (m)) + else if (dynamic_cast (m)) p = new Sequential_music_iterator; - else if (dynamic_cast (m)) + else if (dynamic_cast (m)) p = new Property_iterator; - else if (dynamic_cast (m)) + else if (dynamic_cast (m)) p = new Change_iterator; else if (dynamic_cast(m)) p = new Push_property_iterator; else if (dynamic_cast(m)) p = new Pop_property_iterator; - else if (dynamic_cast (m)) + else if (dynamic_cast (m)) p = new Time_scaled_music_iterator; else if (dynamic_cast (m)) p = new Grace_iterator; diff --git a/lily/my-lily-lexer.cc b/lily/my-lily-lexer.cc index 6fe78ea1cc..a3dc6043ac 100644 --- a/lily/my-lily-lexer.cc +++ b/lily/my-lily-lexer.cc @@ -60,6 +60,8 @@ static Keyword_ent the_key_tab[]={ {"outputproperty", OUTPUTPROPERTY}, {"pushproperty", PUSHPROPERTY}, {"popproperty", POPPROPERTY}, + {"push", PUSH}, + {"pop", POP}, {"partial", PARTIAL}, {"paper", PAPER}, {"penalty", PENALTY}, diff --git a/lilypond-mode.el b/lilypond-mode.el index b035151c54..237f0a347d 100644 --- a/lilypond-mode.el +++ b/lilypond-mode.el @@ -44,7 +44,7 @@ "duration" "font" "grace" "header" "in" "lyrics" "key" "keysignature" "mark" "musicalpitch" "time" "times" "midi" "mm" "name" "notenames" - "notes" "partial" "paper" "penalty" "property" "pt" + "notes" "partial" "paper" "penalty" "push" "pop" "property" "pt" "relative" "remove" "repeat" "repetitions" "addlyrics" "scm" "scmfile" "score" "script" "shape" "skip" "textscript" "tempo" "translator" "transpose" diff --git a/stepmake/stepmake/help2man-rules.make b/stepmake/stepmake/help2man-rules.make index 493d7acff5..8f90dc312a 100644 --- a/stepmake/stepmake/help2man-rules.make +++ b/stepmake/stepmake/help2man-rules.make @@ -12,7 +12,8 @@ $(outdir)/%.1: out/%.1 endif $(outdir)/%.1: $(outdir)/% - $(PERL) $(depth)/$(builddir)/buildscripts/$(outbase)/help2man $< > $@ || \ + echo "generating man page from --help" + @$(PERL) $(depth)/$(builddir)/buildscripts/$(outbase)/help2man $< > $@ || \ (echo ""; echo "Apparently the man pages failed to build. This is";\ echo "no problem, since they don't contain any information anyway.";\ echo "Please run make again, and be prepared for NO manual pages.")