]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-context.cc
* make/lilypond.fedora.spec.in (Requires): scrap kpathsea/tex
[lilypond.git] / lily / global-context.cc
index e7be444321a2539668c63cedf0bfc8ae03adf286..37e9612a0d249aaa18f1e1b35e69eeb00ada050a 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  global-translator.cc -- implement global_context
+  global-context.cc -- implement Global_context
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "global-context.hh"
@@ -12,7 +12,6 @@
 
 #include "warn.hh"
 #include "event.hh"
-#include "music-list.hh"
 #include "music-iterator.hh"
 #include "score-context.hh"
 #include "context-def.hh"
@@ -53,7 +52,7 @@ Global_context::add_moment_to_process (Moment m)
   if (m < now_mom_)
     programming_error ("Trying to freeze in time.");
   
-  for (int i=0; i <  extra_mom_pq_.size (); i++)
+  for (int i = 0; i <  extra_mom_pq_.size (); i++)
     if (extra_mom_pq_[i] == m)
       return;
   extra_mom_pq_.insert (m);