looks good to me

+  (define (flatten l)
+    (cond ((null? l) '())
+          ((pair? l)
+           (append (flatten (car l)) (flatten (cdr l))))
+          (else (list l))))

i'd wager we already have this somewhere, if not can you move this to
scm/lily-library.scm?


On Wed, Aug 6, 2008 at 9:26 PM, Carl D. Sorensen <[EMAIL PROTECTED]> wrote:

> 2) Can you give me any clues about how to set up LilyPond debugging so that
> I might be able to track down the source of the error that occurs when I
> load ly/predefined-fretboards-init.ly in property-init.ly?

try running with --verbose ; that will switch on Scheme stacktraces
for errors.  Or is that not what you mean?

-- 
Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen


_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to