Autoloading of modules

Marius Vollmer (mvo@zagadka.ping.de)
12 Dec 1996 13:49:26 +0100

Hi,

the autoloading of modules is too eager for my taste. Given a module
definition like

(define-module #/prog
:use-module #/package/mod)

autoloading is attempted for `prog', `package' and `package/mod'. I
would rather have it only try `package/mod'.

Does anyone rely on having `package' and `prog' autoloaded?

For me, the autoloading occasionaly loads files that I don't want or
it loads files twice. I have a small patch that does what I want and I
would like to apply it to Guile if nobody objects.