Re: Fix 748. Key signatures for modes (issue4237041)

2011-03-01 Thread percival . music . ca
No complaints, so please push. http://codereview.appspot.com/4237041/ ___ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: build failure for freebsd-x86 in beam-quanting.cc

2011-03-01 Thread Graham Percival
On 2/28/11, Graham Percival gra...@percival-music.ca wrote: On 2/28/11, Jan Nieuwenhuizen jann...@gnu.org wrote: Graham Percival schreef op ma 28-02-2011 om 09:35 [+]: /main/src/gub/target/freebsd-x86/src/lilypond-git.sv.gnu.org--lilypond.git-release-unstable/lily/beam-quanting.cc:638:

Re: build failure for freebsd-x86 in beam-quanting.cc

2011-03-01 Thread Mike Solomon
On Mar 1, 2011, at 8:05 AM, Graham Percival wrote: On 2/28/11, Graham Percival gra...@percival-music.ca wrote: On 2/28/11, Jan Nieuwenhuizen jann...@gnu.org wrote: Graham Percival schreef op ma 28-02-2011 om 09:35 [+]:

Re: build failure for freebsd-x86 in beam-quanting.cc

2011-03-01 Thread Jan Nieuwenhuizen
Graham Percival schreef op di 01-03-2011 om 13:05 [+]: On 2/28/11, Graham Percival gra...@percival-music.ca wrote: On 2/28/11, Jan Nieuwenhuizen jann...@gnu.org wrote: Could somebody comment out this stuff so that we can have a release? Or just add 0.5 and cast to an int? I don't care

Re: build failure for freebsd-x86 in beam-quanting.cc

2011-03-01 Thread Jan Nieuwenhuizen
Mike Solomon schreef op di 01-03-2011 om 08:10 [-0500]: Pushed. Thanks for making this quick fix. I changed it to use my_round for sake of consistency. I would appreciate a bit clearer commit message, I would have written something like Avoid using std::round (). Fixes build on freebsd.

Doc: clarify a wording

2011-03-01 Thread Francisco Vila
Hello, I need to understand this (apparently unfinished) paragraph to be able of translating it, thank you! The default beam settings for the time signature can also be changed, so that set the desired beaming will always be used Changes in automatic beaming settings for a time signature are

RE: clarify a wording

2011-03-01 Thread James Lowe
Fancisco, )-Original Message- )From: lilypond-devel-bounces+james.lowe=datacore@gnu.org )[mailto:lilypond-devel-bounces+james.lowe=datacore@gnu.org] On )Behalf Of Francisco Vila )Sent: 01 March 2011 18:04 )To: LilyPond-Devel list )Subject: Doc: clarify a wording ) )Hello, ) )I

Re: clarify a wording

2011-03-01 Thread Francisco Vila
2011/3/1 James Lowe james.l...@datacore.com: Fancisco, )The default beam settings for the time signature can also be changed, so )that set the desired beaming will always be used Changes in automatic )beaming settings for a time signature are described in @ref{Time )signature}. The default

Re: clarify a wording

2011-03-01 Thread James Lowe
-Original Message- From: Francisco Vila paconet@gmail.com Date: Tue, 1 Mar 2011 19:13:28 +0100 To: James Lowe james.l...@datacore.com Cc: lilypond-devel lilypond-devel@gnu.org Subject: Re: clarify a wording 2011/3/1 James Lowe james.l...@datacore.com: Fancisco, )The default beam

Re: Reduces algorithm time by prefinding footnoted grobs (issue4213042)

2011-03-01 Thread Neil Puttock
On 28 February 2011 23:02, Mike Solomon mike...@ufl.edu wrote: I can use either (cross-staff . #t) , (Y-extent . #f) , or both depending on what floats people's boats. (Y-extent . #f) is less hackish. Sorry - I've since fixed it in line 65-66 of balloon.cc .  Sometimes, parent-spanner is

Re: Reduces algorithm time by prefinding footnoted grobs (issue4213042)

2011-03-01 Thread n . puttock
http://codereview.appspot.com/4213042/diff/24025/lily/balloon-engraver.cc File lily/balloon-engraver.cc (right): http://codereview.appspot.com/4213042/diff/24025/lily/balloon-engraver.cc#newcode65 lily/balloon-engraver.cc:65: Pointer_group_interface::add_grob (g, ly_symbol2scm (annotations),

msgfmt -o out/nl.mo nl.po weirdness

2011-03-01 Thread Mike Solomon
Got this during a build. msgfmt -o out/nl.mo nl.po nl.po:946: `msgid' and `msgstr' entries do not both end with '\n' msgfmt: found 1 fatal error make[1]: *** [out/nl.mo] Error 1 make: *** [install] Error 2 I think this comes from the most recent commit. Is this an OS X thing, or is it a bigger

Re: Reduces algorithm time by prefinding footnoted grobs (issue4213042)

2011-03-01 Thread Mike Solomon
On Mar 1, 2011, at 4:36 PM, Neil Puttock wrote: On 28 February 2011 23:02, Mike Solomon mike...@ufl.edu wrote: I can use either (cross-staff . #t) , (Y-extent . #f) , or both depending on what floats people's boats. (Y-extent . #f) is less hackish. Done. Sorry - I've since fixed it

Commit df1b639baf Fixes round problem appears wrong to me.

2011-03-01 Thread David Kastrup
The diff says something like { Real yshift = config-y[LEFT] - 0.5 * staff_space; - if (abs (round(yshift) - yshift) 0.01 * staff_space) + if (abs ((int)(yshift + 0.5) - yshift) 0.01 * staff_space) config-add (parameters.HORIZONTAL_INTER_QUANT_PENALTY, H); }

Re: msgfmt -o out/nl.mo nl.po weirdness

2011-03-01 Thread Neil Puttock
On 1 March 2011 22:28, Mike Solomon mike...@ufl.edu wrote: Got this during a build. msgfmt -o out/nl.mo nl.po nl.po:946: `msgid' and `msgstr' entries do not both end with '\n' msgfmt: found 1 fatal error make[1]: *** [out/nl.mo] Error 1 make: *** [install] Error 2 I think this comes from

Re: Reduces algorithm time by prefinding footnoted grobs (issue4213042)

2011-03-01 Thread mtsolo
Hey all, I'm having a lot of difficulty with the problem Neil pointed out. If anyone has any suggestions on how to solve it, please let me know! I believe that this problem will rear its ugly head for all grobs at a line break with a break-visibility setting. Thank you very much Neil for your

Re: Reduces algorithm time by prefinding footnoted grobs (issue4213042)

2011-03-01 Thread pnorcks
Hi Mike, I have a quick comment for you below. Thanks, Patrick http://codereview.appspot.com/4213042/diff/24035/scm/define-stencil-commands.scm File scm/define-stencil-commands.scm (right): http://codereview.appspot.com/4213042/diff/24035/scm/define-stencil-commands.scm#newcode37

Patch: doc typo

2011-03-01 Thread Andrew Hawryluk
Just found a dumb typo in my recent edits (regarding keep-inside-line = ##t). Thanks! From b5900c53d179cbff1c08e3ff5c78ec2adf14fff1 Mon Sep 17 00:00:00 2001 From: Andrew Hawryluk ahawry...@gmail.com Date: Tue, 1 Mar 2011 20:35:34 -0700 Subject: [PATCH] Doc: typo in vocals. ---

Re: Patch: doc typo

2011-03-01 Thread Werner LEMBERG
+requires additional calculations. To speed up processing slighty, this ^^^ slightly :-) Werner ___ lilypond-devel mailing list lilypond-devel@gnu.org

Re: Fret diagram fixes (issue4176056)

2011-03-01 Thread percival . music . ca
LGTM http://codereview.appspot.com/4176056/ ___ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel

PATCHES: 48-hour notice for fret diagrams and hamonics+chord glissando

2011-03-01 Thread Graham Percival
Friday, 9am UK time. Fret diagram fixes http://codereview.appspot.com/4176056/ Doc: harmonics and slides http://codereview.appspot.com/4186049/ Cheers, - Graham ___ lilypond-devel mailing list lilypond-devel@gnu.org