From 936515b6d793920e848dd815598a492377781d51 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 23:23:58 +0000 Subject: [PATCH] lilypond-1.3.66 --- input/test/accidental.ly | 8 ++++++++ lily/local-key-engraver.cc | 3 +++ lily/note-name-engraver.cc | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 input/test/accidental.ly diff --git a/input/test/accidental.ly b/input/test/accidental.ly new file mode 100644 index 0000000000..89aafb10e9 --- /dev/null +++ b/input/test/accidental.ly @@ -0,0 +1,8 @@ + +foo = \notes\relative c'' { cis4 cis cis! cis? } +\score { + + <\foo + \context NoteNames \foo +> +} diff --git a/lily/local-key-engraver.cc b/lily/local-key-engraver.cc index 58ebc975d9..55dd16c0b4 100644 --- a/lily/local-key-engraver.cc +++ b/lily/local-key-engraver.cc @@ -139,6 +139,9 @@ Local_key_engraver::process_acknowledged () } } + + + daddy_trans_l_->set_property ("localKeySignature", localsig); /* UGH ! */ diff --git a/lily/note-name-engraver.cc b/lily/note-name-engraver.cc index d6e10628de..c46007a16f 100644 --- a/lily/note-name-engraver.cc +++ b/lily/note-name-engraver.cc @@ -46,7 +46,7 @@ Note_name_engraver::do_process_music () } if (s.length_i()) { - Item * t = new Item (SCM_EOL); + Item * t = new Item (get_property ("basicNoteNameProperties")); t->set_elt_property ("text", ly_str02scm ( s.ch_C())); announce_element (Score_element_info (t, req_l_arr_[0])); texts_.push (t); -- 2.39.5