Hi,

I have a trouble that seems to be caused by this change:

2006-05-24  Alan Mackenzie  <[EMAIL PROTECTED]>
[...]
        * subr.el (eval-after-load): Fix the doc-string.  Allow FILE to
        match ANY loaded file with the right name, not just those in
        load-path.  Put a regexp matching the file name into
        after-load-alist, rather than the name itself.

I have the following after-load form:

(eval-after-load "w3m" FORM)

And now it is incorporated into `after-load-alist' as:

("\\<w3m\\(\\.elc\\|\\.el\\)?\\(\\.gz\\)?\\'" FORM)

While the FORM should be evaluated after the w3m.elc module is
loaded, it is done after the mime-w3m.elc module is loaded.
Since the FORM requires some variables and functions that
w3m.elc provides but it has not been loaded yet at that time,
the FORM simply stops by an error.  Any idea?

Regards,


_______________________________________________
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to