Re: A few questions regarding markup

2009-11-15 Thread David Kastrup
Carl Sorensen writes: > On 11/14/09 1:29 AM, "David Kastrup" wrote: > >> >> >> Ok, I am digging through harp-pedals.scm and looking at >> define-builtin-markup-command. >> >> Now from the definition of define-builtin-markup-command it looks to me >> like you can specify default properties and

Re: A few questions regarding markup

2009-11-15 Thread Carl Sorensen
On 11/14/09 1:29 AM, "David Kastrup" wrote: > > > Ok, I am digging through harp-pedals.scm and looking at > define-builtin-markup-command. > > Now from the definition of define-builtin-markup-command it looks to me > like you can specify default properties and those are let to the > specifi

Re: [PATCH] Allow nested properties to be set with \tweak

2009-11-15 Thread Neil Puttock
2009/11/14 Han-Wen Nienhuys : > Shouldnt this be something recursive? I thought properties could nest > beyond one level. I don't see how it can be, unless you mean building the property alist given the list of symbols and a value to set. The problem with the current behaviour is that it's only

Re: Language and \inlcude

2009-11-15 Thread Valentin Villenave
On Sun, Nov 15, 2009 at 11:24 AM, Ichiro Watanabe wrote: > Would it be possible to promote >    \include "english.ly" > to a first-class command that is allowed in safe mode? Something like >    \language "english" Thanks, this is a very good idea and we've been discussing such a change, but I ha

Re: My "make doc" is broken

2009-11-15 Thread Frédéric Bron
> For info I had the needed packages provided by a "sudo apt-get > build-dep lilypond" command with the only difference that > I used texi2html-1.82 (compiled from sources) instead of 1.78 (in > Ubuntu's repository), as recommended when running ./autogen.sh. did not know that (not in CG): I did th

Re: [PATCH] functional-or returned #f for (functional-or #f #t #f). Fixed.

2009-11-15 Thread Patrick McCarty
On 2009-11-15, David Kastrup wrote: > > --- > scm/lily-library.scm |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/scm/lily-library.scm b/scm/lily-library.scm > index 4a7973a..5853744 100644 > --- a/scm/lily-library.scm > +++ b/scm/lily-library.scm > @@ -273,7 +273

Re: [PATCH] harp-pedal: make documented default 'size match implemented value

2009-11-15 Thread Patrick McCarty
On 2009-11-15, David Kastrup wrote: > > --- > scm/harp-pedals.scm |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scm/harp-pedals.scm b/scm/harp-pedals.scm > index 876e392..f476783 100644 > --- a/scm/harp-pedals.scm > +++ b/scm/harp-pedals.scm > @@ -8,7 +8,7 @@ >

Re: A few questions regarding markup

2009-11-15 Thread David Kastrup
Reinhold Kainhofer writes: > Am Sonntag, 15. November 2009 20:16:51 schrieb Nicolas Sceaux: >> Le 14 nov. 2009 à 09:29, David Kastrup a écrit : >> > Now the harp-pedal command defines the property signature >> > >> > ((size 1.0) >> > (harp-pedal-details) >> > (thickness 0.5)) >> > >> > So fa

Re: A few questions regarding markup

2009-11-15 Thread Reinhold Kainhofer
Am Sonntag, 15. November 2009 20:16:51 schrieb Nicolas Sceaux: > Le 14 nov. 2009 à 09:29, David Kastrup a écrit : > > Now the harp-pedal command defines the property signature > > > > ((size 1.0) > > (harp-pedal-details) > > (thickness 0.5)) > > > > So far, so fine. It > > then calls make-har

Re: A few questions regarding markup

2009-11-15 Thread Nicolas Sceaux
Le 14 nov. 2009 à 09:29, David Kastrup a écrit : > Now the harp-pedal command defines the property signature > > ((size 1.0) > (harp-pedal-details) > (thickness 0.5)) > > So far, so fine. It > then calls make-harp-pedal without passing it those let-bound > variables. As far as I understan

Re: Code formatter

2009-11-15 Thread David Kastrup
Graham Percival writes: > On Fri, Nov 13, 2009 at 11:23:55AM -0700, Carl Sorensen wrote: >> Jan believes that code formatting standards should be no more restrictive >> than the GNU standards. > > By the way, if somebody has a compelling argument why we should > differ from the GNU standards, I'm

Re: My "make doc" is broken

2009-11-15 Thread Xavier Scheuer
Le Sat, 14 Nov 2009 19:57:05 +0100, Frédéric Bron a écrit : > Since I upgraded ubuntu to 9.10, make doc does not work anymore but > why? Is it because of the ubuntu upgrade or because of git pull? Hi Frédéric. I have Ubuntu 9.10 too and I tried to compile (after the first commit, the first compi

Re: Issue #768 - chord repetition shortcut: patch for review

2009-11-15 Thread David Kastrup
Kieren MacMillan writes: > Hi David, > >> OTOH, something like >> { 8-. -^ }*2 >> is not doable with the q approach. > > Of course it is: > \repeat unfold 2 { 8-. q-^ } Well, not exactly a shortcut for saving typing. -- David Kastrup ___ lilypond

[PATCH] functional-or returned #f for (functional-or #f #t #f). Fixed.

2009-11-15 Thread David Kastrup
--- scm/lily-library.scm |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scm/lily-library.scm b/scm/lily-library.scm index 4a7973a..5853744 100644 --- a/scm/lily-library.scm +++ b/scm/lily-library.scm @@ -273,7 +273,7 @@ (define (functional-or . rest) (if (pair? rest

A few questions regarding markup

2009-11-15 Thread David Kastrup
Ok, I am digging through harp-pedals.scm and looking at define-builtin-markup-command. Now from the definition of define-builtin-markup-command it looks to me like you can specify default properties and those are let to the specified default values (#f if unspecified) or the respective properties

[PATCH] harp-pedal: make documented default 'size match implemented value

2009-11-15 Thread David Kastrup
--- scm/harp-pedals.scm |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scm/harp-pedals.scm b/scm/harp-pedals.scm index 876e392..f476783 100644 --- a/scm/harp-pedals.scm +++ b/scm/harp-pedals.scm @@ -8,7 +8,7 @@ (define-builtin-markup-command (harp-pedal layout prop

Re: Vertical spacing of lyrics

2009-11-15 Thread Alexander Kobel
Christian Hitz wrote: Hi, the new vertical spacing is evaluating the skyline of the lyrics lines for spacing. This leads to situations with a very uneven look, as the example below shows. IMHO the tallest glyph in the used font should be used to derive the height of the lyrics line. This very

Vertical spacing of lyrics

2009-11-15 Thread Christian Hitz
Hi, the new vertical spacing is evaluating the skyline of the lyrics lines for spacing. This leads to situations with a very uneven look, as the example below shows. IMHO the tallest glyph in the used font should be used to derive the height of the lyrics line. Regards, Christian \version "2.13

Language and \inlcude

2009-11-15 Thread Ichiro Watanabe
Hi there, The --safe flag disallows \include directives. I'm sure there are very good reasons for it. However, this seems to unnecessarily prevent users who need to compile their source in safe mode from choosing one of the supported languages for notes and accidentals. Would it be possible to pro