]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scheme-listener-scheme.cc
Merge branch 'topic/master-translation' of /home/lilycvs/git/lily/ into topic/master...
[lilypond.git] / lily / scheme-listener-scheme.cc
index 326ba2ecdce755d020778036c667927693befac9..01eaa22ba198da2dbb3a8a7aa92c592caa34c2bd 100644 (file)
 
 LY_DEFINE (ly_make_listener, "ly:make-listener",
           1, 0, 0, (SCM callback),
-          "Creates a listener. Any time the listener hears\n"
-          " an object, it will call @var{callback}\n"
-          " with that object.\n"
+          "Create a listener.  Any time the listener hears an object,"
+          " it will call @var{callback} with that object.\n"
           "\n"
-          " @var{callback} should take exactly one argument." )
+          "@var{callback} should take exactly one argument.")
 {
-  LY_ASSERT_FIRST_TYPE(ly_is_procedure, callback);
+  LY_ASSERT_TYPE (ly_is_procedure, callback, 1);
   Scheme_listener *l = new Scheme_listener (callback);
   SCM listener = GET_LISTENER (l->call).smobbed_copy ();
   l->unprotect ();