Lute Kamstra <[EMAIL PROTECTED]> writes:
> Consider the following situation.
>
> Add a definition to lisp file A and make it available to other lisp
> files by adding an autoload cookie. Commit the change. Then add some
> code to lisp file B that depends on the presence of this definition to
> compile. Commit this change as well.
I don't see why you cannot simply add
(eval-when-compile
(require 'A))
to B.
Since A will be loaded anyway due to the autoload cookie, it doesn't
cost anything, and it makes it clear that B uses features of A.
--
Kim F. Storm <[EMAIL PROTECTED]> http://www.cua.dk
_______________________________________________
Emacs-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-devel