Bastien <[EMAIL PROTECTED]> writes: > Maybe you should compare the location of C-h f gnus RET when running > emacs -Q against its location when you're running a normal emacs > session, with all your config.
Okay, I caught it. It is all because I have defadvice gnus in my config file: ,---- | (defadvice gnus (around switch-or-start) | "Start `gnus' or switch to started *Group* buffer." | (if (gnus-alive-p) | (switch-to-buffer "*Group*") | ad-do-it | (gnus-demon-init))) | | (ad-deactivate 'gnus) `---- When I removed the them, everything goes fine. I don't quite understand, though. A defadvice will forbid it from being byte-compiled? -- William http://williamxu.net9.org _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
