From: David Kastrup Date: Tue, 20 Sep 2011 20:28:08 +0000 (+0200) Subject: define-markup-commands.scm: Fix bad parameter type for \on-the-fly X-Git-Tag: release/2.15.12-1~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=31e79fa5f9d1b1af03ca3fc29ce049b39b485529;p=lilypond.git define-markup-commands.scm: Fix bad parameter type for \on-the-fly --- diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 803b691215..aa022974e3 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -1918,7 +1918,7 @@ returns an empty markup. empty-stencil))) (define-markup-command (on-the-fly layout props procedure arg) - (symbol? markup?) + (procedure? markup?) #:category other "Apply the @var{procedure} markup command to @var{arg}. @var{procedure} should take a single argument."