From b964bfa0b8c3c7662d38969f11bfbc9aed7499ba Mon Sep 17 00:00:00 2001 From: fred Date: Mon, 3 Mar 1997 12:06:42 +0000 Subject: [PATCH] lilypond-0.0.38 --- NEWS | 25 +++++++++++++++++-------- src/lookup.cc | 17 ++++++++++++++++- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 6592108aec..130c3b9656 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +pl 38 + +Internal + - great filename renaming operation with - convention. + - printing methods for paper_def/lookup/symtab(s) + - untied all registers from complexwalker. Now registers are +intrinsically hierarchical. All walker communication is done via a +"top level" register. + +****** pl 37 @@ -5,23 +15,22 @@ Documentation - language.pod as starting point for mudela devel. - Jan's patches: -(jan's pl 36-3) - +Features + - m2m patchy --no-triplet option; + lilypond accepts m2m's real midi output (hand-add red tape) + - m2m output only valid durations, resync option wip - m2m produces .ly output Internal - simpler and better naming for Duration* - the great String renaming / index to base=0 change - Track_column, Lily_stream -Features - - m2m patchy --no-triplet option; - lilypond accepts m2m's real midi output (hand-add red tape) - - m2m output only valid durations, resync option wip + - Duration, Plet, Duration_convert taking load off duration calc. Bugfix - m2m duration calc -Internal - - Duration, Plet, Duration_convert taking load off duration calc. + +****** pl 36 - Jan's patches: - do MIDI rests cleanly. diff --git a/src/lookup.cc b/src/lookup.cc index a87454e2d1..ffd668e75d 100644 --- a/src/lookup.cc +++ b/src/lookup.cc @@ -1,3 +1,11 @@ +/* + lookup.cc -- implement simple Lookup methods. + + source file of the LilyPond music typesetter + + (c) 1997 Han-Wen Nienhuys +*/ + #include "lookup.hh" #include "debug.hh" #include "symtable.hh" @@ -27,6 +35,14 @@ Lookup::add(String s, Symtable*p) symtables_->add(s, p); } +void +Lookup::print()const +{ + mtor << "Lookup: " << texsetting << " {\n"; + symtables_->print(); + mtor << "}\n"; +} + Symbol Lookup::text(String style, String text, int dir) { @@ -42,7 +58,6 @@ Lookup::text(String style, String text, int dir) return s; } -/* *************** */ Real Lookup::internote() -- 2.11.4.GIT