From: fred Date: Sun, 24 Mar 2002 19:48:39 +0000 (+0000) Subject: lilypond-0.0.76 X-Git-Tag: release/1.5.59~4421 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=15c50715307009d21a59bccd4c11be0f23b83956;p=lilypond.git lilypond-0.0.76 --- diff --git a/lily/engraver.cc b/lily/engraver.cc index d524de63d5..54518e6daf 100644 --- a/lily/engraver.cc +++ b/lily/engraver.cc @@ -15,7 +15,6 @@ void Engraver::post_move_processing() { - if (status < CREATION_INITED) { do_creation_processing(); status = CREATION_INITED; diff --git a/lily/include/command-request.hh b/lily/include/command-request.hh index 285d0cbb85..11a1e44bdf 100644 --- a/lily/include/command-request.hh +++ b/lily/include/command-request.hh @@ -26,6 +26,7 @@ public: virtual Meter_change_req * meterchange() { return 0; } virtual Bar_req *bar() { return 0; } virtual Cadenza_req *cadenza() { return 0; } + virtual Disallow_break_req *disallowbreak() { return 0; } virtual Timing_req*timing() { return 0; } virtual Command_script_req*commandscript() { return 0;} }; @@ -37,6 +38,11 @@ public: }; +class Disallow_break_req : public Command_req { +public: + REQUESTMETHODS(Disallow_break_req, disallowbreak); +}; + /** Baseclass for meter/partial req. It has to be handled by Staff_{walker,column} baseclass. */