William Xu <[EMAIL PROTECTED]> writes: > Bastien <[EMAIL PROTECTED]> writes: > >> You sure your .el files are not more recent than your .elc files? > > Yes(or No? naughty English...). All .elc files are more recent.
The function where this warning lives is `gnus' in gnus.el: ,---- | (defun gnus (&optional arg dont-connect slave) | "Read network news. | If ARG is non-nil and a positive number, Gnus will use that as the | startup level. If ARG is non-nil and not a positive number, Gnus will | prompt the user for the name of an NNTP server to use." | (interactive "P") | (unless (byte-code-function-p (symbol-function 'gnus)) | (message "You should byte-compile Gnus") | (sit-for 2)) | (gnus-1 arg dont-connect slave)) `---- So it looks like either your gnus.el is not byte-compiled or there is another one lingering somewhere on your system. -- Bastien _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
