]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/chord-name-engraver.cc
* scm/music-functions.scm (has-request-chord): don't use
[lilypond.git] / lily / chord-name-engraver.cc
index e02b8116d354ff0206df0fde418134507dfa6923..af854701de11c8a35d7d7e9ead8bac5585a23868 100644 (file)
@@ -96,7 +96,7 @@ Chord_name_engraver::process_music ()
        {
          Pitch *p = unsmob_pitch (inversion_event->get_property ("pitch"));
          int octavation =  scm_to_int (oct);
-         Pitch orig = p->transposed (Pitch (-octavation, 0,0));
+         Pitch orig = p->transposed (Pitch (-octavation, 0, 0));
          
          pitches = scm_cons (orig.smobbed_copy (), pitches);
        }
@@ -115,7 +115,7 @@ Chord_name_engraver::process_music ()
    */
   SCM chord_as_scm = scm_cons (pitches, scm_cons (bass, inversion));
   
-  chord_name_ = make_item ("ChordName",notes_[0]->self_scm ());
+  chord_name_ = make_item ("ChordName", notes_[0]->self_scm ());
   chord_name_->set_property ("text", markup);
 
   SCM s = get_property ("chordChanges");