]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 4529: Avoid "Parsed object should be dead" message from issue 4505
authorDavid Kastrup <dak@gnu.org>
Wed, 29 Jul 2015 15:48:16 +0000 (17:48 +0200)
committerDavid Kastrup <dak@gnu.org>
Thu, 30 Jul 2015 18:47:00 +0000 (20:47 +0200)
scm/ly-syntax-constructors.scm

index c690413c88d2957db10b642b8b8c44dac4b1a599..f93ed3ff8cf052b2255eae09c35afb7e9081d6d0 100644 (file)
@@ -246,14 +246,23 @@ into a @code{MultiMeasureTextEvent}."
                                 'grob-property-path (cdr path)))
                    context)))
 
+;; The signature here is slightly fishy since the "fallback return
+;; value" is not actually music but #f.  This used to be (void-music)
+;; but triggered "Parsed object should be dead" warnings for music
+;; objects outside of the current parser session/module.  The called
+;; functions always deliver music and are used from the parser in a
+;; manner where only the last argument is provided from outside the
+;; parser, and its predicate "scheme?" is always true.  So the
+;; fallback value will never get used and its improper type is no
+;; issue.
 (define-public property-override-function
   (ly:make-music-function
-   (list (cons ly:music? (void-music)) symbol? symbol-list? scheme?)
+   (list (cons ly:music? #f) symbol? symbol-list? scheme?)
    property-override))
 
 (define-public property-set-function
   (ly:make-music-function
-   (list (cons ly:music? (void-music)) symbol? symbol? scheme?)
+   (list (cons ly:music? #f) symbol? symbol? scheme?)
    property-set))
 
 (define (get-first-context-id! mus)