Le 27/03/2022 à 13:31, Michael Gerdau a écrit :
Hi List,
We are happy to announce the release of LilyPond 2.23.7. This is
termed > a development release, but these are usually reliable. If
you want
to> use the current stable version of LilyPond, we recommend using
the> 2.22.2 version.> [snip]
Please test this release and let us know about
problems that you encounter.
%% start
\version "2.23.7"
date = #(strftime "%d.%m.%Y" (localtime (current-time)))
%% end
gives me:
3:9: Fehler: GUILE signalisierte einen Fehler für den hier beginnenden
Ausdruck
date = #
(strftime "%d.%m.%Y" (localtime (current-time)))
Invalid argument
Shouldn't this work or has the syntax changed?
Kind regards,
Michael
Can you compile this test file and report back?
\version "2.23.7"
#(debug-enable 'backtrace)
#(display (current-time))
#(newline)
#(display (localtime (current-time)))
#(newline)
#(display (strftime "%d.%m.%Y" (localtime (current-time))))
#(newline)
Thanks,
Jean