emacs-devel
[Top][All Lists]
Advanced

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

Re: functionp bug


From: Stefan Monnier
Subject: Re: functionp bug
Date: Mon, 07 Apr 2008 15:26:17 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)

>> --- mail-source.el.~1.38.~   2008-03-30 10:39:37.000000000 -0400
>> +++ mail-source.el   2008-04-07 12:02:53.000000000 -0400
>> @@ -500,8 +500,7 @@
>> ((stringp value)
>> value)
>> ;; Function
>> -   ((and (listp value)
>> -     (functionp (car value)))
>> +   ((and (listp value) (symbolp (car value)) (fboundp (car value)))
>> (eval value))
>> ;; Just return the value.
>> (t

> It will fix the problem in mail-source.el but the same issue exists
> elsewhere, see for example Tassilo's report:

>  http://permalink.gmane.org/gmane.emacs.gnus.general/66701

He must not have up-to-date code, because gnus-win.el does not use
`functionp' any more in the latest Emacs's trunk.


        Stefan





reply via email to

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