]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scope.cc
release: 1.0.1
[lilypond.git] / lily / scope.cc
index 52a185ee911b90f05a18f72dedd102b94e3b7c90..2e20a1b38d3530f401974f38392354da5d3e91e5 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
+  (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -20,7 +20,7 @@ Scope::print () const
     {
       if (ai.val()->init_b_ == init_b)
        {
-         DOUT << ai.key() << '=';
+         DOUT << ai.key() << "=";
          ai.val()->print ();
        }
     }
@@ -30,8 +30,8 @@ Scope::~Scope ()
 {
   for (Assoc_iter<String,Identifier*>   ai (*this); ai.ok(); ai++)
     {
-      DOUT << "deleting: " << ai.key()<<'\n';
-      delete ai.val();
+      DOUT << "deleting: " << ai.key() << '\n';
+      delete ai.val ();
     }
 }