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

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

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

[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

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

[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?

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

2009-11-15 Thread David Kastrup
Kieren MacMillan kieren_macmil...@sympatico.ca writes: Hi David, OTOH, something like { c e g8-. c e g-^ }*2 is not doable with the q approach. Of course it is: \repeat unfold 2 { c e g8-. q-^ } Well, not exactly a shortcut for saving typing. -- David Kastrup

Re: Code formatter

2009-11-15 Thread David Kastrup
Graham Percival gra...@percival-music.ca 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

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 understand Scheme

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-harp-pedal without

Re: A few questions regarding markup

2009-11-15 Thread David Kastrup
Reinhold Kainhofer reinh...@kainhofer.com 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

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,7 @@

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 the

Re: Language and \inlcude

2009-11-15 Thread Valentin Villenave
On Sun, Nov 15, 2009 at 11:24 AM, Ichiro Watanabe veryfurry...@gmail.com 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

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

2009-11-15 Thread Neil Puttock
2009/11/14 Han-Wen Nienhuys hanw...@gmail.com: 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

Re: A few questions regarding markup

2009-11-15 Thread Carl Sorensen
On 11/14/09 1:29 AM, David Kastrup d...@gnu.org 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

Re: A few questions regarding markup

2009-11-15 Thread David Kastrup
Carl Sorensen c_soren...@byu.edu writes: On 11/14/09 1:29 AM, David Kastrup d...@gnu.org 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