Karl:
...
> u =
> #(define-music-function (music) (ly:music?)
>   (display-scheme-music music)
>    music)
...
>  Now I want to move the def. of u to tt.scm, since I get better scheme 
>  support in the editor there.
...

 I got around the problem by doing:
 tt.scm:
(define (p music)
  (display-scheme-music music)
  music)

 tt.ly
u = #(define-music-function (music) (ly:music?) (p music))

Regards,
/Karl Hammar



Reply via email to