From: fred Date: Tue, 26 Mar 2002 23:23:58 +0000 (+0000) Subject: lilypond-1.3.66 X-Git-Tag: release/1.5.59~1523 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=936515b6d793920e848dd815598a492377781d51;p=lilypond.git lilypond-1.3.66 --- 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);