]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scheme-listener-scheme.cc
Improves parmesan noteheads.
[lilypond.git] / lily / scheme-listener-scheme.cc
index 436d595ed0d8733b2177d788d0ae7c57ca7c6b29..c5a55ecb55855c4bcb0686cff137bb9bd5e74e14 100644 (file)
 #include "scheme-listener.hh"
 
 LY_DEFINE (ly_make_listener, "ly:make-listener",
-          1, 0, 0, (SCM callback),
-          "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.")
+           1, 0, 0, (SCM callback),
+           "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.")
 {
   LY_ASSERT_TYPE (ly_is_procedure, callback, 1);
   Scheme_listener *l = new Scheme_listener (callback);