From 6bf01501b96283a3218fed9277aa5b4da8f72be9 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Tue, 27 Oct 2015 22:37:05 +0100 Subject: [PATCH] Issue 4647: Fix typo in grob::offset-function This most likely causes problems with the fingering engravers. --- scm/output-lib.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm/output-lib.scm b/scm/output-lib.scm index c56fbc46d4..0921cdd36f 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -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) -- 2.39.5