> If you run this on master: > > perl scripts/auxiliar/makelsr.pl --new > > you get > > $ git diff --stat > Documentation/snippets/accordion-register-symbols.ly | 2 +- > > [...] > > There are \version changes for snippets that come from new; they > seem to change from \version "2.23.12" to \version "2.23.13" (while > current master is 2.23.14). > > Is that expected?
Yes. If I add `--verbose` and a proper `--path=...` option to make the script use an up-to-date `convert-ly` binary, I get, for example, ``` Documentation/snippets/vertical-aligned-staffgroups-without-connecting-systemstartbar.ly: convert-ly (GNU LilyPond) 2.23.14 convert-ly: Processing `'... Applying conversion: 2.23.6, 2.23.7, 2.23.8, 2.23.9, 2.23.10, 2.23.11, 2.23.12, 2.23.13 ``` which means that indeed `convert-ly` is called correctly. IIRC, it's exactly the same behaviour as with the old script. Werner