X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscheme-listener-scheme.cc;h=7f1a15627d98382fee27f3fef7458da90edbc250;hb=c038b41688cbfba042deb80f790b560a69813705;hp=a1b1fe593a9b260b0300b769d15327a3c4e4f54d;hpb=e18531db1f79fb685fbd16d6a2a67bf4b6c09915;p=lilypond.git diff --git a/lily/scheme-listener-scheme.cc b/lily/scheme-listener-scheme.cc index a1b1fe593a..7f1a15627d 100644 --- a/lily/scheme-listener-scheme.cc +++ b/lily/scheme-listener-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2006--2010 Erik Sandberg + Copyright (C) 2006--2012 Erik Sandberg LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,11 +20,11 @@ #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);