Re: gcc warnings

2012-07-03 Thread David Kastrup
Werner LEMBERG w...@gnu.org writes: Folks, compiling git 17270930 with gcc 4.6.2 I get the following warnings: beaming-pattern.cc: In function 'void find_location( SCM, Moment, Moment, Rational, Moment*, Moment*, Moment*)': beaming-pattern.cc:220:39:

Re: formatted GNUmakefile

2012-07-03 Thread Jan Nieuwenhuizen
Werner LEMBERG writes: I'll take care of formatting However, there is a lot of activity recently on the Makefiles, so it might be better if I do the whole thing later so that patches and changes stay valid, probably after release 2.16... Great, thanks. Jan -- Jan Nieuwenhuizen

Re: Gets vertical skylines from grob stencils (issue 5626052)

2012-07-03 Thread Janek Warchoł
Hi all, my favorite patch returned! Yay! I did some testing and the results are here: http://lilypond-stuff.1065243.n5.nabble.com/file/n5705594/patchset37-results.tar.gz (sorry, too big for an attachment - 200 kB) In short: - staffswitch lines are broken - barnumbers collide with ties - some

git-cl under Windows

2012-07-03 Thread Trevor Daniels
Has anyone managed to run git-cl under Windows successfully? The version from github.com/gperciva/git-cl.git ships without the readline module. It is not required for Unixes as it is included with Unix python, I believe. But it is not included with the Windows version of python. There is a

Re: git-cl under Windows

2012-07-03 Thread Graham Percival
On Tue, Jul 03, 2012 at 11:40:58AM +0100, Trevor Daniels wrote: The version from github.com/gperciva/git-cl.git ships without the readline module. It is not required for Unixes as it is included with Unix python, I believe. Hmm. If it's as simple as including a bunch of extra .py files, then

Re: git-cl under Windows

2012-07-03 Thread David Kastrup
Graham Percival gra...@percival-music.ca writes: On Tue, Jul 03, 2012 at 11:40:58AM +0100, Trevor Daniels wrote: The version from github.com/gperciva/git-cl.git ships without the readline module. It is not required for Unixes as it is included with Unix python, I believe. Hmm. If it's as

Re: git-cl under Windows

2012-07-03 Thread Graham Percival
On Tue, Jul 03, 2012 at 04:50:13PM +0200, David Kastrup wrote: Graham Percival gra...@percival-music.ca writes: Good luck. My personal take on this is not to bother but disable use of the readline module if unavailable. git cl does not ask for interactive input often enough to make that

Re: git-cl under Windows

2012-07-03 Thread David Kastrup
Graham Percival gra...@percival-music.ca writes: On Tue, Jul 03, 2012 at 04:50:13PM +0200, David Kastrup wrote: Graham Percival gra...@percival-music.ca writes: Good luck. My personal take on this is not to bother but disable use of the readline module if unavailable. git cl does not

Re: git-cl under Windows

2012-07-03 Thread David Kastrup
David Kastrup d...@gnu.org writes: Graham Percival gra...@percival-music.ca writes: On Tue, Jul 03, 2012 at 04:50:13PM +0200, David Kastrup wrote: Graham Percival gra...@percival-music.ca writes: Good luck. My personal take on this is not to bother but disable use of the readline

[PATCH] Don't load readline unconditionally

2012-07-03 Thread David Kastrup
David Kastrup d...@gnu.org writes: Namely, git-cl first tries importing readline unconditionally, then it tries importing it again conditionally. That does not look all too clever. Perhaps removing the unconditional import is all that is needed? From

make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Janek Warchoł
Hi, until recently, 'make bin' was a very smart tool: it recompiled only necessary .cc files, not everything. That was lifesaving: instead of having to wait for 5 minutes, i got the results of my changes in 5 seconds. Unfortunately, this is no longer the case: no matter how trivial the change,

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread David Kastrup
Janek Warchoł janek.lilyp...@gmail.com writes: until recently, 'make bin' was a very smart tool: it recompiled only necessary .cc files, not everything. That was lifesaving: instead of having to wait for 5 minutes, i got the results of my changes in 5 seconds. Unfortunately, this is no

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Jean-Charles Malahieude
Le 03/07/2012 19:23, Janek Warchoł disait : Hi, until recently, 'make bin' was a very smart tool: it recompiled only necessary .cc files, not everything. That was lifesaving: instead of having to wait for 5 minutes, i got the results of my changes in 5 seconds. Unfortunately, this is no

Re: Gets vertical skylines from grob stencils (issue 5626052)

2012-07-03 Thread m...@apollinemike.com
On 2 juil. 2012, at 01:03, k-ohara5...@oco.net wrote: I like the direction in which this goes, making things closer, because it is easier for users to add padding when needed than to persuade LilyPond to space things more closely. I did a quick test on some music.

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread m...@apollinemike.com
On 3 juil. 2012, at 19:46, Jean-Charles Malahieude wrote: Le 03/07/2012 19:23, Janek Warchoł disait : Hi, until recently, 'make bin' was a very smart tool: it recompiled only necessary .cc files, not everything. That was lifesaving: instead of having to wait for 5 minutes, i got the

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Janek Warchoł
On Tue, Jul 3, 2012 at 7:35 PM, David Kastrup d...@gnu.org wrote: So obviously something else is wrong here. Try removing lily/out/smobs.dep and lily/out/smobs.o and see whether this helps. To be expected is a large amount of recompilation _once_ since a lot of files need smobs.hh. If it

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Janek Warchoł
On Tue, Jul 3, 2012 at 8:55 PM, Janek Warchoł janek.lilyp...@gmail.com wrote: Now comes the most surprising part: just to make sure, i just did the following: checkout origin/master # local master contained a revert of that commit make from scratch add a trivial change make bin

Re: git-cl under Windows

2012-07-03 Thread Trevor Daniels
David Kastrup wrote Tuesday, July 03, 2012 4:34 PM Namely, git-cl first tries importing readline unconditionally, then it tries importing it again conditionally. That does not look all too clever. Perhaps removing the unconditional import is all that is needed? Yes, this seems to bypass

Re: git-cl under Windows

2012-07-03 Thread David Kastrup
Trevor Daniels t.dani...@treda.co.uk writes: $ git cl upload master WARNING: terminal is not fully functional Documentation/notation/input.itely | 56 + 1 files changed, 56 insertions(+), 0 deletions(-) 'vi' is not recognized as an internal or external command, operable

Re: git-cl under Windows

2012-07-03 Thread Graham Percival
On Tue, Jul 03, 2012 at 10:26:18PM +0200, David Kastrup wrote: Trevor Daniels t.dani...@treda.co.uk writes: Description empty; aborting. That just means that git-cl called what it considered an editor, and the file for editing did not change, so git-cl aborted. Another option would be to

Re: git-cl under Windows

2012-07-03 Thread David Kastrup
Graham Percival gra...@percival-music.ca writes: On Tue, Jul 03, 2012 at 10:26:18PM +0200, David Kastrup wrote: Trevor Daniels t.dani...@treda.co.uk writes: Description empty; aborting. That just means that git-cl called what it considered an editor, and the file for editing did not

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread David Kastrup
Janek Warchoł janek.lilyp...@gmail.com writes: On Tue, Jul 3, 2012 at 8:55 PM, Janek Warchoł janek.lilyp...@gmail.com wrote: Now comes the most surprising part: just to make sure, i just did the following: checkout origin/master # local master contained a revert of that commit make from

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Werner LEMBERG
It is almost certainly a problem with your system clock. If you have touched source files with a future clock, and now the clock is right, then compiled files will be outdated (older than the source file) immediately after compilation again. There is a special built-in target in GNU make:

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread David Kastrup
Werner LEMBERG w...@gnu.org writes: It is almost certainly a problem with your system clock. If you have touched source files with a future clock, and now the clock is right, then compiled files will be outdated (older than the source file) immediately after compilation again. There is a

Re: git-cl under Windows

2012-07-03 Thread Trevor Daniels
David Kastrup wrote Tuesday, July 03, 2012 10:46 PM Graham Percival gra...@percival-music.ca writes: On Tue, Jul 03, 2012 at 10:26:18PM +0200, David Kastrup wrote: Trevor Daniels t.dani...@treda.co.uk writes: Description empty; aborting. That just means that git-cl called what it

Re: make bin got dumb because of Fix description in lily/include/smobs.hh

2012-07-03 Thread Janek Warchoł
On Tue, Jul 3, 2012 at 10:19 PM, David Kastrup d...@gnu.org wrote: It is almost certainly a problem with your system clock. If you have touched source files with a future clock, and now the clock is right, then compiled files will be outdated (older than the source file) immediately after

Re: git-cl under Windows

2012-07-03 Thread Trevor Daniels
Graham Percival wrote Tuesday, July 03, 2012 2:36 PM On Tue, Jul 03, 2012 at 11:40:58AM +0100, Trevor Daniels wrote: The version from github.com/gperciva/git-cl.git ships without the readline module. It is not required for Unixes as it is included with Unix python, I believe. Hmm. If

Re: building master / fixed all Critical?

2012-07-03 Thread Graham Percival
On Mon, Jul 02, 2012 at 01:21:31PM +0200, John Mandereau wrote: Il giorno dom, 01/07/2012 alle 23.29 +0100, Graham Percival ha scritto: Could we get a clear note about which commit(s) were reverted and are presumably in limbo? The only patch that has been reverted so far is

Re: Gets vertical skylines from grob stencils (issue 5626052)

2012-07-03 Thread Keith OHara
On Tue, 03 Jul 2012 10:51:05 -0700, m...@apollinemike.com m...@apollinemike.com wrote: Could you tell me the page and the document where the system overlay happens? Second page of the bassoon part. http://k-ohara.oco.net/Lilypond/TightSkylines/woods-Bassoon1.pdf The source is one directory

PATCH: Countdown to 20120705

2012-07-03 Thread Colin Campbell
For 20:00 MDT Thursday July 5 Build: Issue 2635 http://code.google.com/p/lilypond/issues/detail?id=2635: Configure search for NCSB fonts does not work in Debian Squeeze - R 6353058 http://codereview.appspot.com/6353058/ Documentation: Issue 2579