]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/apply-context-iterator.cc
*** empty log message ***
[lilypond.git] / lily / apply-context-iterator.cc
index ddb00b9df1edefab2d811847efdb18d97b66bdc6..6f69bbc7b8e8843177122d3c51183d5db6897b70 100644 (file)
@@ -1,10 +1,9 @@
-/* 
+/*
   apply-context-iterator.cc -- implement Apply_context_iterator
-  
+
   source file of the GNU LilyPond music typesetter
-  
+
   (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-  
 */
 
 #include "simple-music-iterator.hh"
@@ -13,8 +12,8 @@
 #include "input.hh"
 
 /**
-  Iterate a property.  
- */
+   Iterate a property.
+*/
 class Apply_context_iterator : public Simple_music_iterator
 {
 public:
@@ -23,7 +22,6 @@ protected:
   virtual void process (Moment);
 };
 
-
 void
 Apply_context_iterator::process (Moment m)
 {
@@ -32,10 +30,10 @@ Apply_context_iterator::process (Moment m)
   if (ly_c_procedure_p (proc))
     scm_call_1 (proc, get_outlet ()->self_scm ());
   else
-    get_music ()->origin ()->warning (_("\\applycontext argument is not a procedure"));
-  
+    get_music ()->origin ()->warning (_ ("\\applycontext argument is not a procedure"));
+
   Simple_music_iterator::process (m);
 }
 
 IMPLEMENT_CTOR_CALLBACK (Apply_context_iterator);
-  
+