Re: compilation error when using stemlet over rests

2013-10-15 Thread Gilberto Agostinho
Done.

Issue 3617: Compilation error when using stemlet over rests

https://code.google.com/p/lilypond/issues/detail?id=3617



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/compilation-error-when-using-stemlet-over-rests-tp152356p152362.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: compilation error when using stemlet over rests

2013-10-15 Thread Thomas Morley
2013/10/16 Thomas Morley :
> 2013/10/16 Gilberto Agostinho :
>> Hello all,
>>
>> I am getting an error when trying to compile the following code:
>>
>> \version "2.17.28"
>> {
>>   \override Staff.Stem.stemlet-length = 0.75
>>   \clef percussion
>>a,8->[ r8  c''8 r8 a,8 r8 c''8]
>> }
>>
>> The compiler outputs the following message: Exited with return code
>> -1073741819
>>
>> I think I kind of figured out what is happening here. Apparently, there is
>> some conflict between the position of the rests and the stemlets I am trying
>> to use. This is due to the fact that the gap between the notes in the code
>> above allow knee beaming. If one adds the following line to the code it will
>> work well:
>>
>> \override Beam.auto-knee-gap = ##f
>>
>> I also noted that in some similar cases LilyPond is able to lower the rests
>> further down when dealing with the kneed beams, thus allowing enough space
>> for the stemlets and so everything works well:
>>
>> \version "2.17.28"
>> {
>>   \override Staff.Stem.stemlet-length = 0.75
>>   \clef percussion
>>a,8->[ r8  c''8 a,8]
>> }
>> {
>>   \override Staff.Stem.stemlet-length = 0.75
>>   \override Beam.auto-knee-gap = ##f
>>   \clef percussion
>>a,8->[ r8  c''8 a,8]
>> }
>>
>> But this clearly isn't the case on my first minimal example above. So well,
>> though I already found the solution to my problem (I would not want to use
>> kneed beams anyway), I though I should share this problem here in the
>> mailing list, in case someone considers it to be a bug.
>>
>> Take care,
>> Gilberto
>>
>>
>>
>>
>> --
>> View this message in context: 
>> http://lilypond.1069038.n5.nabble.com/compilation-error-when-using-stemlet-over-rests-tp152356.html
>> Sent from the User mailing list archive at Nabble.com.
>>
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
> Hi Gilbert,
Gilberto
>
> clearly a bug. Please report.
>
> Cheers,
>   Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: compilation error when using stemlet over rests

2013-10-15 Thread Thomas Morley
2013/10/16 Gilberto Agostinho :
> Hello all,
>
> I am getting an error when trying to compile the following code:
>
> \version "2.17.28"
> {
>   \override Staff.Stem.stemlet-length = 0.75
>   \clef percussion
>a,8->[ r8  c''8 r8 a,8 r8 c''8]
> }
>
> The compiler outputs the following message: Exited with return code
> -1073741819
>
> I think I kind of figured out what is happening here. Apparently, there is
> some conflict between the position of the rests and the stemlets I am trying
> to use. This is due to the fact that the gap between the notes in the code
> above allow knee beaming. If one adds the following line to the code it will
> work well:
>
> \override Beam.auto-knee-gap = ##f
>
> I also noted that in some similar cases LilyPond is able to lower the rests
> further down when dealing with the kneed beams, thus allowing enough space
> for the stemlets and so everything works well:
>
> \version "2.17.28"
> {
>   \override Staff.Stem.stemlet-length = 0.75
>   \clef percussion
>a,8->[ r8  c''8 a,8]
> }
> {
>   \override Staff.Stem.stemlet-length = 0.75
>   \override Beam.auto-knee-gap = ##f
>   \clef percussion
>a,8->[ r8  c''8 a,8]
> }
>
> But this clearly isn't the case on my first minimal example above. So well,
> though I already found the solution to my problem (I would not want to use
> kneed beams anyway), I though I should share this problem here in the
> mailing list, in case someone considers it to be a bug.
>
> Take care,
> Gilberto
>
>
>
>
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/compilation-error-when-using-stemlet-over-rests-tp152356.html
> Sent from the User mailing list archive at Nabble.com.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

Hi Gilbert,

clearly a bug. Please report.

Cheers,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: compilation error when using stemlet over rests

2013-10-15 Thread Gilberto Agostinho
And in case this is relevant, I am using Frescobaldi 2.0.10 (although the
error above also happens without using Frescobaldi) on a Windows 8 - 64 bit
machine.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/compilation-error-when-using-stemlet-over-rests-tp152356p152357.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


compilation error when using stemlet over rests

2013-10-15 Thread Gilberto Agostinho
Hello all,

I am getting an error when trying to compile the following code:

\version "2.17.28"
{
  \override Staff.Stem.stemlet-length = 0.75
  \clef percussion
   a,8->[ r8  c''8 r8 a,8 r8 c''8]  
}

The compiler outputs the following message: Exited with return code
-1073741819

I think I kind of figured out what is happening here. Apparently, there is
some conflict between the position of the rests and the stemlets I am trying
to use. This is due to the fact that the gap between the notes in the code
above allow knee beaming. If one adds the following line to the code it will
work well:

\override Beam.auto-knee-gap = ##f 

I also noted that in some similar cases LilyPond is able to lower the rests
further down when dealing with the kneed beams, thus allowing enough space
for the stemlets and so everything works well:

\version "2.17.28"
{
  \override Staff.Stem.stemlet-length = 0.75
  \clef percussion
   a,8->[ r8  c''8 a,8]  
}
{
  \override Staff.Stem.stemlet-length = 0.75
  \override Beam.auto-knee-gap = ##f 
  \clef percussion
   a,8->[ r8  c''8 a,8]  
}

But this clearly isn't the case on my first minimal example above. So well,
though I already found the solution to my problem (I would not want to use
kneed beams anyway), I though I should share this problem here in the
mailing list, in case someone considers it to be a bug.

Take care,
Gilberto




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/compilation-error-when-using-stemlet-over-rests-tp152356.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user