]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 4647: Fix typo in grob::offset-function
authorDavid Kastrup <dak@gnu.org>
Tue, 27 Oct 2015 21:37:05 +0000 (22:37 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 28 Oct 2015 19:14:59 +0000 (20:14 +0100)
This most likely causes problems with the fingering engravers.

scm/output-lib.scm

index c56fbc46d4f0a0790b4e42e828f6457ddf734854..0921cdd36f00b20d54442206d3a063ed2e9d0d05 100644 (file)
@@ -999,8 +999,8 @@ underlying accumulation.
 If @var{data} is @code{#f} or @code{'()}, it is not included in the sum."
   (cond ((or (not data) (null? data))
          func)
-        ((or (ly:unpure-pure-container func)
-             (ly:unpure-pure-container data))
+        ((or (ly:unpure-pure-container? func)
+             (ly:unpure-pure-container? data))
          (ly:make-unpure-pure-container
           (lambda rest
             (plus (apply ly:unpure-call func rest)