>> [...] after doing a grep over the git repository, which leads me to
>> `property-iterator.cc`, it's not really clear to me what's going
>> on...
>
> Well, you can find it in `define-event-classes.scm`. It's the event
> class for events created by `\override`s.
Ah, yes, I missed that while do
Le jeudi 16 février 2023 à 06:30 +, Werner LEMBERG a écrit :
> ```
>
> >> As can be seen, the acciaccatura neither has a slash nor a slur if
> >> quoted. [...]
> >
> > This looks like a real bug, please file an issue.
>
> [https://gitlab.com/lilypond/lilypond/-/issues/6531](https://gitlab.c
>> As can be seen, the acciaccatura neither has a slash nor a slur if
>> quoted. [...]
>
> This looks like a real bug, please file an issue.
https://gitlab.com/lilypond/lilypond/-/issues/6531
> AFAICS, this works:
>
> ```
> \version "2.25.2"
>
> \layout {
> \context {
> \Score
> qu
Le mercredi 15 février 2023 à 19:34 +, Werner LEMBERG a écrit :
> ```
>
> Consider this example.
>
> ```
> fluteNotes = \relative {
> r2. c''4 |
> d8 \acciaccatura e c d e fis2 |
> g2 d |
> }
>
> oboeNotes = \relative c'' {
> R1 |
> \cueDuring "flute" #UP { R1 } |
> g2 d |
> }
>
Consider this example.
```
fluteNotes = \relative {
r2. c''4 |
d8 \acciaccatura e c d e fis2 |
g2 d |
}
oboeNotes = \relative c'' {
R1 |
\cueDuring "flute" #UP { R1 } |
g2 d |
}
\addQuote "flute" { \fluteNotes }
<<
\new Staff \fluteNotes
\new Staff \oboeNotes
>>
```
As can be