From de5db4c8c3f0a41252834b498220320a117fef7c Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2002 02:05:13 +0000 Subject: [PATCH] lilypond-1.5.30 --- ChangeLog | 53 +++++++++++++++++++++++++++++++++ lily/note-head-line-engraver.cc | 3 +- 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e8e1505545..90166e4d2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,56 @@ +2002-02-04 Han-Wen + + * VERSION: 1.5.30 released + + * lily/dynamic-engraver.cc: add doco about DynamicLineSpanner + + * Documentation/user/refman.itely (Dynamics): add a note about + DynamicLineSpanner. + + * scm/grob-description.scm: add a 'translator-type? object + property, so that \property Foo.Bar =\turnOff doesn't cause + type check warning. + + * lily/translator-group.cc (add_fresh_group_translator): make + new add-translator functions to make distinction between fresh and + used group-translators. Fixes problem with scripts on auto-changing voice + + * lily/timing-engraver.cc: make Timing_engraver instantiatable, + add to Score_performer. Fixes bar checks in MIDI + + * lily/tie-engraver.cc (create_grobs): Use pitches to compare note + heads. Fixes many quirks with ties. + + * lily/engraver.cc (announce_grob): Use SCM argument. Store cause + in the grob property #'cause, instead of using Grob_info. + + * ly/engraver-init.ly (StaffContext): move Dot_column_engraver to + staff context, fixing dot alignment on collisions. + + * lily/beam-engraver.cc (try_music): remove can't find beam start + warning, so that skipTypesetting won't complain. + +2002-02-01 Mats Bengtsson + + * Documentation/user/refman.itely (Paper size): Documentation fix, + papersize + + * lily/text-engraver.cc: Bugfix: textNonEmpty works again + + * scm/grob-description.scm: \breathe: Use feta font comma by default + +2002-01-23 Mats Bengtsson + + * input/template/piano-dynamics.ly (pedal): Simplified + +2002-01-18 Mats Bengtsson + + * ly/engraver-init.ly: avoid warnings on \skip in lyrics + +2002-01-10 Mats Bengtsson + + * lilypond-mode.el (LilyPond-command-query): ignore case. + 2002-02-01 Han-Wen Nienhuys * VERSION: 1.5.29 released diff --git a/lily/note-head-line-engraver.cc b/lily/note-head-line-engraver.cc index c37e613432..c8533b8e48 100644 --- a/lily/note-head-line-engraver.cc +++ b/lily/note-head-line-engraver.cc @@ -120,7 +120,8 @@ Note_head_line_engraver::create_grobs () line_->set_parent (Staff_symbol_referencer::staff_symbol_l (last_head_), Y_AXIS); - announce_grob (line_, last_req_); + SCM c = last_req_? last_req_->self_scm () : SCM_EOL; + announce_grob(line_, c); last_req_ = 0; follow_ = false; -- 2.39.5