]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/engraver.cc
Run sort-lines on .gitignore.
[lilypond.git] / lily / engraver.cc
index 29f4b2f198be88d1ede0408fc7ee47f512281c4b..70a8bf512fb51ae71e1a3e05627c1b00e04027a7 100644 (file)
@@ -90,13 +90,13 @@ Engraver::Engraver ()
 static SCM creation_callback = SCM_EOL;
 LY_DEFINE (ly_set_grob_creation_callback, "ly:set-grob-creation-callback",
           1, 0, 0, (SCM cb),
-          "Specify a procedure that will be called every time a new grob "
-          "is created. The callback will receive as arguments the grob "
-          "that was created, the name of the C++ source file that caused "
-          "the grob to be created and the corresponding line number in the "
-          "C++ source file.")
+          "Specify a procedure that will be called every time a new grob"
+          " is created.  The callback will receive as arguments the grob"
+          " that was created, the name of the C++ source file that caused"
+          " the grob to be created, and the corresponding line number in"
+          " the C++ source file.")
 {
-  LY_ASSERT_FIRST_TYPE (ly_is_procedure, cb);
+  LY_ASSERT_TYPE (ly_is_procedure, cb, 1);
 
   creation_callback = cb;