]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/text-engraver.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / text-engraver.cc
index 270855febde233ecc7d34f52f5b592d0430bc7f1..6bd2356cab176959cdacb948b425604c0fb2fedd 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1998--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1998--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -59,7 +59,7 @@ Text_engraver::process_music ()
       Item *text = make_item ("TextScript", r->self_scm ());
 
       int priority = robust_scm2int (text->get_property ("script-priority"),
-                                    200);
+                                     200);
 
       /* see script-engraver.cc */
       priority += i;
@@ -68,7 +68,7 @@ Text_engraver::process_music ()
 
       Direction dir = to_dir (r->get_property ("direction"));
       if (dir)
-       set_grob_direction (text, dir);
+        set_grob_direction (text, dir);
 
       SCM mark = r->get_property ("text");
 
@@ -87,15 +87,15 @@ Text_engraver::Text_engraver ()
 }
 
 ADD_TRANSLATOR (Text_engraver,
-               /* doc */
-               "Create text scripts.",
+                /* doc */
+                "Create text scripts.",
 
-               /* create */
-               "TextScript ",
+                /* create */
+                "TextScript ",
 
-               /* read */
-               "",
+                /* read */
+                "",
 
-               /* write */
-               ""
-               );
+                /* write */
+                ""
+               );