lilypond-user
[Top][All Lists]
Advanced

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

OLL not working with lilypond 2.22


From: Valentin Petzel
Subject: OLL not working with lilypond 2.22
Date: Sun, 24 Jan 2021 00:54:54 +0100

Hello,

Lilypond transitioned to guile 2. Thus in core/internal/control.scm

(use-syntax (ice-9 syncase))

Will not be nescessary anymore and won’t work. We can replace it by

(if (< (string->number (car (string-split (version) #\.))) 2) (use-syntax 
(ice-9 syncase)))

which keeps compatibility to older Lilypond versions. In bezier/_internal/
special-cpts-display.ily the statements

#(cond ((not (defined? 'debug-control-points-line-thickness))
         0.05)))

&c. do not work anymore, one could fix this by doing

#(define debug-control-points-line-thickness
   (if (not (defined? 'debug-control-points-line-thickness))
         0.05
         debug-control-points-line-thickness))

Regards,
Valentin

Attachment: signature.asc
Description: This is a digitally signed message part.


reply via email to

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