]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-loose-grace-error.ly
cd647bcd82f9226b454ab654cc845a4aa9eaf8f3
[lilypond.git] / input / regression / spacing-loose-grace-error.ly
1 \header
2 {
3
4 texidoc = "Even in case of incorrect contexts (eg. shortlived
5   contexts) that break linking of columns through spacing wishes,
6   @code{strict-note-spacing} defaults to a robust solution.
7   This test passes if it does not seg fault; instead it should
8   produce three programming error messages.  Note that, in tight
9   music with strict note spacing, grace notes will collide with
10   normal notes.  This is expected."
11
12 }
13
14 \version "2.14.0"
15
16 %% \new Staff cause shortlived, disconnected Voice contexts
17 %% breaking spacing-wishes links.
18 \score {
19   \new Staff {
20     \override Score.SpacingSpanner #'strict-note-spacing = ##t
21     \afterGrace c'4 {c'32 c'32 }
22     c'4
23   }
24   \layout {
25     ragged-right = ##f
26   }
27 }