PATCHES - Countdown for August 22th

2017-08-22 Thread James
Hello, Here is the current patch countdown list. The next countdown will be on August 25th. A quick synopsis of all patches currently in the review process can be found here: http://philholmes.net/lilypond/allura/ Push: 5172 Support for English note names in Arabic Music - James Lowe ht

Re: Support for English note names in Arabic Music (issue 322510043 by pkx1...@gmail.com)

2017-08-22 Thread pkx166h
author Hassan El fatihi hassan.elfat...@free.fr Sun, 13 Aug 2017 12:53:12 + (13:53 +0100) committer James Lowe pkx1...@gmail.com Tue, 22 Aug 2017 08:38:38 + (09:38 +0100) commit 2be5896dc7025f2d5e2b11567dd5d00d32ffb75c https://codereview.appspot.com/322510043/ ___

Re: Additions in event-listener.ly (issue 152600043 by pkx1...@gmail.com)

2017-08-22 Thread pkx166h
author Thomas Morley Sat, 12 Aug 2017 10:34:42 +0100 (10:34 +0100) committer James Lowe Tue, 22 Aug 2017 10:04:17 +0100 (10:04 +0100) commit f0781fa82140814e371275e84802b3648970477a https://codereview.appspot.com/152600043/

What is void music?

2017-08-22 Thread Dan Eble
A. ly-syntax-constructors.scm has this. (define-public (void-music) (ly:set-origin! (make-music 'Music))) B. music-functions.scm has this: ... (make-music 'Music 'void #t) ... In lily-library.scm, the function collect-music-aux has the comment "void music is discarded”. It seems to

Re: What is void music?

2017-08-22 Thread David Kastrup
Dan Eble writes: > A. ly-syntax-constructors.scm has this. > >(define-public (void-music) > (ly:set-origin! (make-music 'Music))) > > B. music-functions.scm has this: >... (make-music 'Music 'void #t) ... > > In lily-library.scm, the function collect-music-aux has the comment "void

Re: What is void music?

2017-08-22 Thread Dan Eble
On Aug 22, 2017, at 09:44, David Kastrup wrote: > >> I stumbled at this when I tried to define a predicate for void music, >> used (B) as an example, and found that it didn’t catch ##{#}. I’m not >> sure what to do. > > What is it that you are trying to predicate? The void flag is typically >