- ge:module-location (MODULE)
Given a module name, returns the full path to the file where's it's
implemented.
This works for me:
(define (ge:module-location module)
(library-source-file-name
(find-library-by-name module)))
I had to export 'library-source-file-name' from
'(psyntax library-manager)', edit this entry in 'makefile.ss':
[find-library-by-name i $boot]
And add this entry:
[library-source-file-name i]
Yes, I wanna get the Geiser/Ikarus ball rolling. :-) I'd be *very* happy
just to have symbol completion and library completion in 'input' forms.
Ed