From: Han-Wen Nienhuys Date: Tue, 3 May 2005 12:53:43 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.5.22~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=373e5ea2a23c1e9e7e916fc95b1dec4c9b8a7503;p=lilypond.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 511a322282..f41df7b0d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -85,7 +85,7 @@ ($(outdir)/Fontmap.lily): idem. * buildscripts/gen-emmentaler-scripts.py (i): load fetaXX encoding - for PFAEmmentaler-XXX.pfa. This fixes ghostscript ps2pdf problems. + for PFAEmmentaler-XXX.pfa. * Documentation/user/music-glossary.tely (accidental): NL translation of accidental. diff --git a/Documentation/user/global.itely b/Documentation/user/global.itely index f3b855e960..3cfaf88661 100644 --- a/Documentation/user/global.itely +++ b/Documentation/user/global.itely @@ -801,11 +801,11 @@ may use any @ref{Text markup} commands in the header. \book { \header { dedication = "dedicated to me" - title = \markup \center-align < "Title first line" "Title second line, longer" > + title = \markup \center-align { "Title first line" "Title second line, longer" } subtitle = "the subtitle," subsubtitle = #(string-append "subsubtitle LilyPond version " (lilypond-version)) poet = "Poet" - composer = \markup \center-align < "composer" \small "(1847-1973)" > + composer = \markup \center-align { "composer" \small "(1847-1973)" } texttranslator = "Text Translator" meter = \markup { \teeny "m" \tiny "e" \normalsize "t" \large "e" \huge "r" } arranger = "Arranger" diff --git a/VERSION b/VERSION index 6e46ae6c12..bcd4ae6864 100644 --- a/VERSION +++ b/VERSION @@ -1,6 +1,6 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=2 MINOR_VERSION=5 -PATCH_LEVEL=21 +PATCH_LEVEL=22 MY_PATCH_LEVEL= diff --git a/lily/include/music-iterator.hh b/lily/include/music-iterator.hh index 7b395e8a2c..89619297dd 100644 --- a/lily/include/music-iterator.hh +++ b/lily/include/music-iterator.hh @@ -55,28 +55,14 @@ protected: DECLARE_SMOBS (Music_iterator, dummy); Music_iterator (Music_iterator const &); -public: +public: Moment music_get_length () const; Moment music_start_mom () const; Music_iterator (); - - /** - Do the reporting. Will try MUSIC_L_ in its own translator first, - then its children. Returns the iterator that succeeded - */ Music_iterator *try_music (Music *) const; - - /** - The translation unit that we this iterator is reporting to now. - */ Context *get_outlet () const; - void set_context (Context *); - - /** Get an iterator matching the type of MUS, and use TRANS to find - an accompanying translation unit - */ static SCM get_static_get_iterator (Music *mus); void init_translator (Music *, Context *); void quit (); @@ -84,22 +70,11 @@ public: virtual void derived_substitute (Context *, Context *); virtual Moment pending_moment () const; virtual bool ok () const; - virtual bool run_always () const; virtual void process (Moment until); virtual void derived_mark () const; virtual void construct_children (); - - /** - Construct sub-iterators, and set the translator to - report to. - */ - DECLARE_SCHEME_CALLBACK (constructor, ()); - - /** - Get an iterator for MUS, inheriting the translation unit from THIS. - */ SCM get_iterator (Music *) const; virtual Music_iterator *try_music_in_children (Music *) const; @@ -108,6 +83,7 @@ public: protected: virtual void do_quit (); void descend_to_child (Context *); + private: Interpretation_context_handle handle_; Music *music_;