lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Making markup functions parametric


From: Lukas-Fabian Moser
Subject: Re: Making markup functions parametric
Date: Fri, 3 Jul 2020 23:33:42 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0


#(define (get-scheme-markup-function func)
   (string->symbol
    (string-append "make-"
                   (symbol->string func)
                   "-markup")))

... which should be replaced by

#(define (get-scheme-markup-function func)
   (symbol-append 'make- func '-markup))

Sorry, I had not realized that symbol-append is available in Guile 1.8.

Lukas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]