Re: Issue 2376 in lilypond: Automatic footnotes on \null markups causes unexpected results

2012-03-12 Thread lilypond

Updates:
Status: Fixed
Owner: d...@gnu.org
Labels: -Patch-push Fixed_2_15_34

Comment #20 on issue 2376 by d...@gnu.org: Automatic footnotes on \null  
markups causes unexpected results

http://code.google.com/p/lilypond/issues/detail?id=2376

Pushed as b0a0b0da364a2379e3a26a0cd6af87fece1594fb to staging.


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


Re: Issue 2378 in lilypond: Patch: Various updates to reduce make doc output

2012-03-12 Thread lilypond

Updates:
Status: Started
Labels: -Patch-countdown Patch-needs_work

Comment #9 on issue 2378 by philehol...@gmail.com: Patch: Various updates  
to reduce make doc output

http://code.google.com/p/lilypond/issues/detail?id=2378

Haven't actually updated the makefiles to add the --quiet flag.  Will do so  
later today.  Please leave on countdown.



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


Order of markup commands can affect result

2012-03-12 Thread Francisco Vila
Hello,
Maybe \wordwrap-lines can not be wrapped by \bold, but I think we are
not documenting it and error message is misleading.


% works -- bold inside
% \markup \wordwrap-lines \bold

% does not work -- bold outside
\markup \bold \wordwrap-lines
{
 words words words words words words words
}



-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org , www.csmbadajoz.com

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


Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond

Status: New
Owner: 
Labels: Type-Crash

New issue 2393 by d...@gnu.org: Segfault in connection with \markuplist
http://code.google.com/p/lilypond/issues/detail?id=2393

Can please somebody check this against being a regression?  In earlier  
versions, \markuplist was called \markuplines, please take this into  
account when checking.



Attachments:
gdg.ly  62 bytes


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


Re: Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond


Comment #1 on issue 2393 by pkx1...@gmail.com: Segfault in connection with  
\markuplist

http://code.google.com/p/lilypond/issues/detail?id=2393

2.14.2 crashes (I am using windows 7)

--snip--

Starting lilypond-windows.exe 2.14.2 [Untitled]...
Processing  
`c:/users/jlowe~1.dcs/appdata/local/temp/frescobaldi-mmsmxm/tmpckllyc/document.ly'

Parsing...
c:/users/jlowe~1.dcs/appdata/local/temp/frescobaldi-mmsmxm/tmpckllyc/document.ly:0:  
warning:  
no \version statement found, please add


\version 2.14.2

for future compatibility
Exited with return code -1073741819.

-snip--

2.15.32 on the same system but using \markuplist gives the same result.

Does this help?


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


Re: Order of markup commands can affect result

2012-03-12 Thread David Kastrup
Francisco Vila paconet@gmail.com writes:

 Hello,
 Maybe \wordwrap-lines can not be wrapped by \bold, but I think we are
 not documenting it and error message is misleading.


 % works -- bold inside
 % \markup \wordwrap-lines \bold

 % does not work -- bold outside
 \markup \bold \wordwrap-lines
 {
  words words words words words words words
 }

The top level \markup can accept a markup list (which it silently wraps
into \line), but intermediate markup functions can't take a markup list
as argument.  There is a somewhat special situation when they occur at
the _start_ of where a markup list is expected: in that case, they are
applied to _every_ element of the following markup list.

-- 
David Kastrup


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


Re: Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond


Comment #2 on issue 2393 by d...@gnu.org: Segfault in connection with  
\markuplist

http://code.google.com/p/lilypond/issues/detail?id=2393

Some.  If it also crashes in 2.12, this is not a critical regression.

I actually have no idea why something as simple as that would crash (does  
not seem all that new, either).



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


Re: Issue 2392 in lilypond: Segfault in connection with \applyContext

2012-03-12 Thread lilypond


Comment #1 on issue 2392 by pkx1...@gmail.com: Segfault in connection with  
\applyContext

http://code.google.com/p/lilypond/issues/detail?id=2392

This also occurs in 2.14.2 (I am using Windows 7)

--snip--

Starting lilypond-windows.exe 2.14.2 [Untitled]...
Processing  
`c:/users/jlowe~1.dcs/appdata/local/temp/frescobaldi-yda0mo/tmpqlk_9m/document.ly'

Parsing...
c:/users/jlowe~1.dcs/appdata/local/temp/frescobaldi-yda0mo/tmpqlk_9m/document.ly:0:

for future compatibility
Interpreting music...
Exited with return code -1073741819.

--snip--


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


Re: Order of markup commands can affect result

2012-03-12 Thread James
hello

On 12 March 2012 10:28, David Kastrup d...@gnu.org wrote:
 Francisco Vila paconet@gmail.com writes:

 Hello,
 Maybe \wordwrap-lines can not be wrapped by \bold, but I think we are
 not documenting it and error message is misleading.


 % works -- bold inside
 % \markup \wordwrap-lines \bold

 % does not work -- bold outside
 \markup \bold \wordwrap-lines
 {
  words words words words words words words
 }

 The top level \markup can accept a markup list (which it silently wraps
 into \line), but intermediate markup functions can't take a markup list
 as argument.  There is a somewhat special situation when they occur at
 the _start_ of where a markup list is expected: in that case, they are
 applied to _every_ element of the following markup list.

Do we need an @warning somewhere then?

if so (or if something else) let me know where (or create a doc tracker).

thanks

-- 
--

James

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


Re: Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond


Comment #3 on issue 2393 by thomasmo...@gmail.com: Segfault in connection  
with \markuplist

http://code.google.com/p/lilypond/issues/detail?id=2393

2.12.3 crashes,too

I'm on Linux 64-bit 10.04
Compiled with Frescobaldi

Code:
\version 2.12.3
\markuplines \bold { \wordwrap-lines {  } }


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


Re: Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond


Comment #5 on issue 2393 by d...@gnu.org: Segfault in connection with  
\markuplist

http://code.google.com/p/lilypond/issues/detail?id=2393

So this is not a regression.  That's good news for 2.16 release planning.   
Still needs to get investigated.


#(display #{ \markuplist \bold { \wordwrap-lines {  } } #})
outputs
((#procedure bold-markup (layout props arg) (#procedure  
wordwrap-lines-markup-list (layout props args) (


I would assume that this is not a valid markup list.

Unwrapping the list leads to
\markup \bold { \wordwrap-lines { } }

as a test case.  This is accepted and leads to an error message in  
processing:


Parsing.../usr/local/share/lilypond/2.15.31/scm/define-markup-commands.scm:1118:6:  
In  
procedure ly:stencil-empty? in expression (remove ly:stencil-empty?  
stencils):
/usr/local/share/lilypond/2.15.31/scm/define-markup-commands.scm:1118:6:  
Wrong type argument in position 1 (expecting Stencil): (#Stencil  )


That seems to be the same problem: a markup list (or stencil list) where a  
markup is expected.



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


Re: Issue 2393 in lilypond: Segfault in connection with \markuplist

2012-03-12 Thread lilypond


Comment #6 on issue 2393 by pkx1...@gmail.com: Segfault in connection with  
\markuplist

http://code.google.com/p/lilypond/issues/detail?id=2393

Also on 2.12.3 on Windows crashes too.


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


Re: Issue 1793 in lilypond: Doc: change how lyrics in PianoStaff is documented

2012-03-12 Thread lilypond

Updates:
Status: Fixed
Owner: tdaniels...@gmail.com
Labels: fixed_2_15_14

Comment #6 on issue 1793 by tdaniels...@gmail.com: Doc: change how lyrics  
in PianoStaff is documented

http://code.google.com/p/lilypond/issues/detail?id=1793

I'm closing this issue fixed as it was adequately covered by the fix to  
1812 in

32c862967d559ab512cd96e3321a2c8dabe724ca


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


Re: Issue 1964 in lilypond: lilydev 2.5

2012-03-12 Thread lilypond


Comment #28 on issue 1964 by pkx1...@gmail.com: lilydev 2.5
http://code.google.com/p/lilypond/issues/detail?id=1964

@Graham, what do you want to do with this?

Install the trivial stuff on 10.04 an dgo with that (basically msmtp, new  
git-cl, improved lily-git.tcl. update link to CG on desktop).


and that's about it.

Janek suggested something in the .bashrc (see comment 18  
(http://code.google.com/p/lilypond/issues/detail?id=1964#c18) above.


12.04 seems to be scheduled for release April/May.

I think python 2.7 is installed on 11.10 so we could jump to that and THEN  
to 12.04.


I don't think it will be a problem for the LilyPond compiling, but I am  
uncertain for GUB.



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


Re: Issue 2322 in lilypond: Document use of property-setting music in output definitions

2012-03-12 Thread lilypond

Updates:
Summary: Document use of property-setting music in output definitions
Blockedon: -2358

Comment #5 on issue 2322 by d...@gnu.org: Document use of property-setting  
music in output definitions

http://code.google.com/p/lilypond/issues/detail?id=2322

According to the last comment, I changed the topic of this issue.  The task  
is the same, just without having to spell out \layout-from.



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


Re: Issue 2358 in lilypond: Patch: Allow music with layout instructions in output definitions.

2012-03-12 Thread lilypond
Issue 2358: Patch: Allow music with layout instructions in output  
definitions.

http://code.google.com/p/lilypond/issues/detail?id=2358

This issue is no longer blocking issue 2322.
See http://code.google.com/p/lilypond/issues/detail?id=2322
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

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


Re: Issue 1964 in lilypond: lilydev 2.5

2012-03-12 Thread lilypond


Comment #29 on issue 1964 by gra...@percival-music.ca: lilydev 2.5
http://code.google.com/p/lilypond/issues/detail?id=1964

For 10.04, you need to compile fontforge from source.  You cannot install a  
package from a later ubuntu.  You need to compile fontforge from source.   
Look at /usr/local/bin/ in lilydev 1.2.  You need to compile fontforge from  
source.


After you have compiled fontforge from source, we can talk about the next.   
It does not need python 2.7.  It is trivial to add the python bindings for  
fontforge.  After you have compiled fontforge from source.  This may or may  
not be trivial if you've never done it before, but it is not optional.   
You need to compile fontforge from source.



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


Re: Issue 2378 in lilypond: Patch: Various updates to reduce make doc output

2012-03-12 Thread lilypond

Updates:
Labels: Patch-new

Comment #10 on issue 2378 by philehol...@gmail.com: Patch: Various updates  
to reduce make doc output

http://code.google.com/p/lilypond/issues/detail?id=2378#c10

GNUmakefile: pushes lilypond output to a logfile.
GNUmakefile.in: heeltap from previous patch
lilypond-book-rules.make: removes output from pdflatex and prevents it  
requesting input if it fails.

lysdoc-rules.make: Gets rid of echoed progress message
abc2ly.py; lys-to-tely.py; midi2ly.py: Gets rid of progress message using a  
--quiet flag.


http://codereview.appspot.com/5727055


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


Re: Issue 2391 in lilypond: Add Appendix entry for Predefined Paper Sizes

2012-03-12 Thread lilypond

Updates:
Labels: -Patch-new Patch-needs_work

Comment #2 on issue 2391 by pkx1...@gmail.com: Add Appendix entry for  
Predefined Paper Sizes

http://code.google.com/p/lilypond/issues/detail?id=2391

Need to look at using @*table instead of @verbatim


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


Re: Issue 2378 in lilypond: Patch: Various updates to reduce make doc output

2012-03-12 Thread lilypond

Updates:
Labels: Patch-review

Comment #11 on issue 2378 by d...@gnu.org: Patch: Various updates to reduce  
make doc output

http://code.google.com/p/lilypond/issues/detail?id=2378#c11

Patchy the autobot says: LGTM.


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


Re: Issue 2385 in lilypond: Translated donwnload page does not show correct information for MacOSX

2012-03-12 Thread lilypond

Updates:
Status: Started

Comment #2 on issue 2385 by paconet@gmail.com: Translated donwnload  
page does not show correct information for MacOSX

http://code.google.com/p/lilypond/issues/detail?id=2385

Done in Japanese.


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


Re: Issue 596 in lilypond: collision tuplet number and slur

2012-03-12 Thread lilypond

Updates:
Status: Accepted

Comment #7 on issue 596 by d...@gnu.org: collision tuplet number and slur
http://code.google.com/p/lilypond/issues/detail?id=596

Bug is still there visually and produces the output
Drawing systems...
programming error: no solution found for Bezier intersection
continuing, cross fingers
programming error: no solution found for Bezier intersection
continuing, cross fingers
programming error: no solution found for Bezier intersection
continuing, cross fingers
programming error: no solution found for Bezier intersection
continuing, cross fingers
programming error: no solution found for Bezier intersection
continuing, cross fingers

I have no idea why this should have been marked as verified.


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


Re: Issue 2382 in lilypond: Website: menu is misligned and colors in Community menu are wrong

2012-03-12 Thread lilypond


Comment #1 on issue 2382 by carl.d.s...@gmail.com: Website: menu is  
misligned and colors in Community menu are wrong

http://code.google.com/p/lilypond/issues/detail?id=2382

IIRC, the menu bar has always been left-aligned on my browsers.



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