Consider this snippet.
```
\relative c' {
\compoundMeter #'((2 8) (3 8))
c8 d e fis gis
c8 fis, gis e d
c8 d e4 gis8
}
```
The results I get are different depending on whether I use version
2.24 or a current development version; see attached images.
To get the same beaming as with 2.24, I have to write
```
\relative c' {
\compoundMeter #'((2 8) (3 8))
\set Timing.beamExceptions = #'()
\set Timing.beatStructure = 2,3
c8 d e fis gis
c8 fis, gis e d
c8 d e4 gis8
}
```
Is this an intended change or do I miss something? If it is the
former, the 'Changes' document should be updated, together with the
`compound-time-signature.ly` snippet.
Werner