Guile-BAUX and Mixp htmlization maps available

2011-08-22 Thread Thien-Thi Nguyen
These data files can be found in directory: http://www.gnuvola.org/data/ They are used to generate, for example: http://www.gnuvola.org/software/ttn-do/frisk.out.html.gz Speaking of ttn-do, the slog continues apace; we approach the unbearable lightness of being free of Guile 1.4.x dependenc

REC-xml-20081126.sxml ?

2011-08-22 Thread Thien-Thi Nguyen
Next Mixp release will include some SXML dabblings: http://git.savannah.gnu.org/cgit/mixp.git/commit/?id=453b97 Anyone have a REC-xml-20081126.sxml (note extension) for testing?

Re: REC-xml-20081126.sxml ?

2011-08-22 Thread Andy Wingo
On Mon 22 Aug 2011 18:17, Thien-Thi Nguyen writes: > Next Mixp release will include some SXML dabblings: > > http://git.savannah.gnu.org/cgit/mixp.git/commit/?id=453b97 > > Anyone have a REC-xml-20081126.sxml (note extension) for testing? You could use Guile's ssax test suite, if you like. An

Re: REC-xml-20081126.sxml ?

2011-08-22 Thread Thien-Thi Nguyen
() Andy Wingo () Mon, 22 Aug 2011 20:11:55 +0200 You could use Guile's ssax test suite, if you like. Good idea; thanks for the tip.

Re: Compatibility V1.8 and 2.0 - deprecated (debug-enable 'debug)

2011-08-22 Thread Ludovic Courtès
Hi, (Sorry for the late reply.) Peter TB Brett skribis: > Ian Hulin writes: > >> In the Lilypond code we use (debug-enable 'debug) to give full error >> information when we have Scheme lines embedded in a LilyPond source file. >> >> This option has been deprecated in V2.0 but there's no indica

Re: Is this a bug?

2011-08-22 Thread Mark H Weaver
ri...@happyleptic.org wrote: > ---[ woe.scm ]--- > > (define-syntax without-exception > (syntax-rules () > ((without-exception key thunk ...) > (catch key (lambda () thunk > ...) >

Reader syntax for accessing arrays

2011-08-22 Thread Panicz Maciej Godek
Hi, I've noticed that one of the biggest inconveniences of lisp is a very clumsy way of accessing arrays. Having to write (array-set! a (* (array-ref a i j) 2) i j)) seems to be unnecessarily prolix, for in C, language designed specifically to access arrays, the same operation could be written as a