lilypond-auto
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Lilypond-auto] Issue 4449 in lilypond: Stacked tuplets crash


From: lilypond
Subject: Re: [Lilypond-auto] Issue 4449 in lilypond: Stacked tuplets crash
Date: Sun, 28 Jun 2015 21:48:46 +0000


Comment #15 on issue 4449 by address@hidden: Stacked tuplets crash
https://code.google.com/p/lilypond/issues/detail?id=4449

Example code:

\version "2.19.21"

% Turn off tuplet bracket and number.
tupletOff = {
  \once \override TupletBracket.bracket-visibility = ##f
  \once \override TupletNumber.stencil = ##f
  %\once \override TupletNumber.stencil = #point-stencil
}

% Turn on tuplet bracket and number.
tupletOn = {
  \once \override TupletBracket.bracket-visibility = ##t
  \revert TupletNumber.stencil
}

treble = \relative c'' {
  \clef treble
  \time 1/4

  \tuplet 9/8 {
    \stemUp
    \tupletOff
    \tuplet 20/3 {
      a'8[( cis,) a'( cis,) a']
    }
    s32 * 6
  } |
}

\score {
  \new Staff = "treble" { \treble }
  \layout { }
}

Causes a core dump on Fedora 22. Using #point-stencil compiles fine. Setting the stencil to ##f causes the crash.




--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings



reply via email to

[Prev in Thread] Current Thread [Next in Thread]