]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/system-start-delimiter-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / system-start-delimiter-engraver.cc
index 479618addcdb1b50aef2c4768a373964ce157aff..ed7e34a029034212649ffd60f912c909dca4e372 100644 (file)
@@ -4,7 +4,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2005--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
 */
 
@@ -21,7 +21,7 @@
 struct Bracket_nesting_node
 {
 public:
-  virtual ~Bracket_nesting_node(){}
+  virtual ~Bracket_nesting_node (){}
   virtual bool add_staff (Grob *) { return false; }
   virtual void add_support (Grob *) { }
   virtual void set_bound (Direction, Grob *){}
@@ -219,7 +219,7 @@ System_start_delimiter_engraver::finalize ()
 void
 System_start_delimiter_engraver::acknowledge_staff_symbol (Grob_info inf)
 {
-  Grob *staff = inf.grob();
+  Grob *staff = inf.grob ();
   bool succ = nesting_->add_staff (staff);
 
   if (!succ)
@@ -250,14 +250,23 @@ ADD_ACKNOWLEDGER (System_start_delimiter_engraver, system_start_delimiter);
 ADD_ACKNOWLEDGER (System_start_delimiter_engraver, system_start_text);
 
 ADD_TRANSLATOR (System_start_delimiter_engraver,
-               /* doc */ "Creates a system start delimiter (ie. SystemStart@{Bar, Brace, Bracket@} spanner",
-               /* create */ "SystemStartSquare "
+               /* doc */
+               "Create a system start delimiter (i.e., a"
+               " @code{SystemStartBar}, @code{SystemStartBrace},"
+               " @code{SystemStartBracket} or @code{SystemStartSquare}"
+               " spanner).",
+
+               /* create */
+               "SystemStartSquare "
                "SystemStartBrace "
                "SystemStartBracket "
-               "SystemStartBar",
+               "SystemStartBar ",
+
                /* read */
                "systemStartDelimiter "
                "systemStartDelimiterHierarchy "
-               "currentCommandColumn",
+               "currentCommandColumn ",
 
-               /* write */ "");
+               /* write */
+               ""
+               );