From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66706 Path: news.gmane.org!not-for-mail From: Romain Francoise Newsgroups: gmane.emacs.devel,gmane.emacs.gnus.general Subject: Re: functionp bug Date: Mon, 07 Apr 2008 20:34:07 +0200 Organization: orebokech dot com Message-ID: <87prt1v7j4.fsf@elegiac.orebokech.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1207593299 24296 80.91.229.12 (7 Apr 2008 18:34:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 7 Apr 2008 18:34:59 +0000 (UTC) Cc: Katsumi Yamaoka , ding@gnus.org, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 07 20:35:32 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JiwBe-00053v-Vg for ged-emacs-devel@m.gmane.org; Mon, 07 Apr 2008 20:35:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JiwB1-0000lS-Q3 for ged-emacs-devel@m.gmane.org; Mon, 07 Apr 2008 14:34:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JiwAy-0000kx-GE for emacs-devel@gnu.org; Mon, 07 Apr 2008 14:34:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JiwAy-0000kd-0F for emacs-devel@gnu.org; Mon, 07 Apr 2008 14:34:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JiwAx-0000kY-N9 for emacs-devel@gnu.org; Mon, 07 Apr 2008 14:34:39 -0400 Original-Received: from smtp4-g19.free.fr ([212.27.42.30]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JiwAx-00054e-F8 for emacs-devel@gnu.org; Mon, 07 Apr 2008 14:34:39 -0400 Original-Received: from smtp4-g19.free.fr (localhost.localdomain [127.0.0.1]) by smtp4-g19.free.fr (Postfix) with ESMTP id 1D5AB3EA1B8; Mon, 7 Apr 2008 20:34:30 +0200 (CEST) Original-Received: from elegiac.orebokech.com (home.orebokech.com [82.67.41.165]) by smtp4-g19.free.fr (Postfix) with ESMTP id 79F0C3EA24D; Mon, 7 Apr 2008 20:34:08 +0200 (CEST) Original-Received: by elegiac.orebokech.com (Postfix, from userid 1000) id 58E163B71B; Mon, 7 Apr 2008 20:34:07 +0200 (CEST) X-Face: }9mYu,e_@+e!`Z-P5kVXa3\_b:hdJ"B)ww[&=b<2=awG:GOIM, Katsumi Yamaoka , emacs-devel@gnu.org, ding@gnus.org In-Reply-To: (Stefan Monnier's message of "Mon, 07 Apr 2008 12:04:06 -0400") X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:94605 gmane.emacs.gnus.general:66706 Archived-At: Stefan Monnier 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