Part_combine_iterator: simplify context substitution (issue 238070043 by nine.fierce.ball...@gmail.com)

2015-05-08 Thread nine . fierce . ballads
Reviewers: , Description: Part_combine_iterator: simplify context substitution. There are no regression test differences, but I'm concerned that there might be a reason for the way this was written that the tests do not exercise. Music_iterator::substitute_outlet: do nothing if the new outlet i

Re: absolute pitch entry: accept an offset octave (issue 235010043 by k-ohara5...@oco.net)

2015-05-08 Thread Wols Lists
On 08/05/15 22:08, Simon Albrecht wrote: > Hello Wol, > > most of this has been discussed already: As I realised ... my email client threads, but somebody else's clearly breaks threads so I didn't see them initially. Using a note just feels wrong to me ... (and we use numbers elsewhere, like \tim

Re: absolute pitch entry: accept an offset octave (issue 235010043 by k-ohara5...@oco.net)

2015-05-08 Thread Simon Albrecht
Hello Wol, most of this has been discussed already: Am 08.05.2015 um 20:40 schrieb Wols Lists: On 07/05/15 16:19, Paul Morris wrote: On May 7, 2015, at 10:43 AM, Paul Morris wrote: \relative [optional pitch] { ... \absolute [no pitch] { ... \octave [obligatory pitch] { … The downside

Re: srfi-1 not available in \layout

2015-05-08 Thread Thomas Morley
2015-05-08 22:56 GMT+02:00 Thomas Morley : > 2015-05-08 10:14 GMT+02:00 David Kastrup : >> Thomas Morley writes: >> >>> Hi all, >>> >>> looks like srfi-1 is not available in \layout >>> >>> \version "2.19.18" >>> \layout { #(display (append-map identity '((1) (2 } >>> { c''1 } >>> >>> returns:

Re: srfi-1 not available in \layout

2015-05-08 Thread Thomas Morley
2015-05-08 10:14 GMT+02:00 David Kastrup : > Thomas Morley writes: > >> Hi all, >> >> looks like srfi-1 is not available in \layout >> >> \version "2.19.18" >> \layout { #(display (append-map identity '((1) (2 } >> { c''1 } >> >> returns: >> Unbound variable: append-map >> >> Is this intended?

Re: srfi-1 not available in \layout

2015-05-08 Thread Thomas Morley
Hi Jan-Peter, 2015-05-08 9:37 GMT+02:00 Jan-Peter Voigt : > Hi Harm, > > I think, its a matter of scope. You have to "import" srfi via use-modules, > but you can't do that inside \layout{} (IIUC). > You can use a self-defined wrapper-command, to access the needed functions: > > \version "2.19.18"

Re: absolute pitch entry: accept an offset octave (issue 235010043 by k-ohara5...@oco.net)

2015-05-08 Thread Wols Lists
On 07/05/15 16:19, Paul Morris wrote: >> On May 7, 2015, at 10:43 AM, Paul Morris wrote: >> >> \relative [optional pitch] { ... >> \absolute [no pitch] { ... >> \octave [obligatory pitch] { … >> >> The downside with this is that \absolute is really just a subset of the >> functionality of \oct

Re: Use mkstemp for intermediate ps files (issue 233230044 by truer...@gmail.com)

2015-05-08 Thread pkx166h
On 2015/05/08 02:59:28, trueroad wrote: > Just to add, it seems to fail make doc quite quickly (so if this log isn't > helping you may want to try a make, make doc and see if you can debug it > locally). > > Usually make doc can take a long time, and only fail near the end - but this > seem

Re: Use mkstemp for intermediate ps files (issue 233230044 by truer...@gmail.com)

2015-05-08 Thread David Kastrup
Masamichi HOSODA writes: >> what happens if I set delete-intermediate-file to ##f? >> Will the temporary PS file be renamed or copied to '.ps'? > > No. > > Temporary PS file will be created in the temporary directory, > instead of current directory. > > If you set delete-intermediate-file to ##f,

Re: Use mkstemp for intermediate ps files (issue 233230044 by truer...@gmail.com)

2015-05-08 Thread ArnoldTheresius
Masamichi Hosoda wrote > ... > When you want both PDF and PS files, > I recommend the following command. > > $ lilypond --pdf --ps > > .ly > > ___ > lilypond-devel mailing list > lilypond-devel@ > https://lists.gnu.org/mailman/listinfo/lilypond-deve

Re: Use mkstemp for intermediate ps files (issue 233230044 by truer...@gmail.com)

2015-05-08 Thread Masamichi HOSODA
> what happens if I set delete-intermediate-file to ##f? > Will the temporary PS file be renamed or copied to '.ps'? No. Temporary PS file will be created in the temporary directory, instead of current directory. If you set delete-intermediate-file to ##f, lilypond will not delete the temporary

Re: srfi-1 not available in \layout

2015-05-08 Thread David Kastrup
Thomas Morley writes: > Hi all, > > looks like srfi-1 is not available in \layout > > \version "2.19.18" > \layout { #(display (append-map identity '((1) (2 } > { c''1 } > > returns: > Unbound variable: append-map > > Is this intended? I don't really know the intentions with regard to the mo

Re: Use mkstemp for intermediate ps files (issue 233230044 by truer...@gmail.com)

2015-05-08 Thread ArnoldTheresius
lemzwerg wrote > ... > https://codereview.appspot.com/233230044/diff/20001/scm/backend-library.scm > File scm/backend-library.scm (right): > ... > https://codereview.appspot.com/233230044/ > > ___ > lilypond-devel mailing list > lilypond-devel@ > https

Re: srfi-1 not available in \layout

2015-05-08 Thread Jan-Peter Voigt
Hi Harm, I think, its a matter of scope. You have to "import" srfi via use-modules, but you can't do that inside \layout{} (IIUC). You can use a self-defined wrapper-command, to access the needed functions: \version "2.19.18" #(use-modules (srfi srfi-1)) #(define-public (disp-append-map a b)(d