X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fengraver.cc;h=70a8bf512fb51ae71e1a3e05627c1b00e04027a7;hb=c7c92b9904a95633f73b6d09096c8f3267d390d2;hp=ac74d5e93064f9c808dccf6358fc95fae9465cc3;hpb=87eedcd59f4082cb0841528ad5bc82cb1d1191e3;p=lilypond.git diff --git a/lily/engraver.cc b/lily/engraver.cc index ac74d5e930..70a8bf512f 100644 --- a/lily/engraver.cc +++ b/lily/engraver.cc @@ -90,14 +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.") { - SCM_ASSERT_TYPE(ly_is_procedure (cb), cb, SCM_ARG1, __FUNCTION__, - "procedure"); + LY_ASSERT_TYPE (ly_is_procedure, cb, 1); creation_callback = cb;