From 097d025f0bc9069b746841f739829dac4aff6f4a Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 12 Jul 2015 19:27:53 +0200 Subject: [PATCH] Issue 4497: Fix non-rebase/convert of issue 4445 in parallel with issue 4442 Rerunning the conversion rule used in issue4442 fixes this issue. This should have been a showstopper for commands such as \omit and \offset but it appears that check-grob-path does not mind the spurious argument at all. --- ly/music-functions-init.ly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ly/music-functions-init.ly b/ly/music-functions-init.ly index cda5e73957..6e0f5b5651 100644 --- a/ly/music-functions-init.ly +++ b/ly/music-functions-init.ly @@ -959,7 +959,7 @@ override = with subproperties given as well. Because @code{\\override} is a reserved word with special syntax in LilyPond input, this music function will generally only be accessible from Scheme.") - (let ((p (check-grob-path grob-property-path (*parser*) (*location*) + (let ((p (check-grob-path grob-property-path (*location*) #:default 'Bottom #:min 3))) (if p @@ -1384,7 +1384,7 @@ its previous value. @var{grob-property-path} is a symbol list of the form with subproperties given as well. Because @code{\\revert} is a reserved word with special syntax in LilyPond input, this music function will generally only be accessible from Scheme.") - (let ((p (check-grob-path grob-property-path (*parser*) (*location*) + (let ((p (check-grob-path grob-property-path (*location*) #:default 'Bottom #:min 3))) (if p -- 2.39.5