info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "You should byte-compile Gnus" ?


From: Bastien
Subject: Re: "You should byte-compile Gnus" ?
Date: Mon, 25 Feb 2008 07:07:18 +0000
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux)

William Xu <william.xwl@gmail.com> writes:

> Bastien <bzg@altern.org> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]