emacs-devel
[Top][All Lists]
Advanced

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

Re: functionp bug


From: Romain Francoise
Subject: Re: functionp bug
Date: Mon, 07 Apr 2008 20:34:07 +0200

Stefan Monnier <address@hidden> writes:

> I've installed the patch below which should fix it.

> --- 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




reply via email to

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