]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/music.cc
release: 0.1.0
[lilypond.git] / lily / music.cc
index f42394b9e6ef8d1a36224a79e0fcaaa84b2fb11c..4949e2737b4557e13504b63c05546ba3e8e47574 100644 (file)
@@ -16,11 +16,14 @@ Music::time_int() const
 {
     return MInterval(0,0);
 }
+
 void
 Music::print()const
 {
 #ifndef NPRINT
-    mtor << name() << "{" ;
+    mtor << name() << "{";
+    if  (type_str_!="" || id_str_!="")
+       mtor << "`" <<type_str_ << " = " << id_str_<<"\'";
     do_print();
     mtor << "}\n";
 #endif