From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50552 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: Backtrace on agent fetching Date: Tue, 04 Mar 2003 07:11:41 -0600 Sender: owner-ding@hpc.uh.edu Message-ID: References: <84isuzto23.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1046783557 5979 80.91.224.249 (4 Mar 2003 13:12:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 4 Mar 2003 13:12:37 +0000 (UTC) Original-X-From: owner-ding@hpc.uh.edu Tue Mar 04 14:12:35 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18qCDj-0001Y9-00 for ; Tue, 04 Mar 2003 14:12:35 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 18qCDO-0006tB-00; Tue, 04 Mar 2003 07:12:14 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 04 Mar 2003 07:13:14 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id HAA00737 for ; Tue, 4 Mar 2003 07:13:02 -0600 (CST) Original-Received: (qmail 42299 invoked by alias); 4 Mar 2003 13:11:58 -0000 Original-Received: (qmail 42294 invoked from network); 4 Mar 2003 13:11:58 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by 66.230.238.6 with SMTP; 4 Mar 2003 13:11:58 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 18qCW1-0000ea-00 for ; Tue, 04 Mar 2003 14:31:29 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 41 Original-NNTP-Posting-Host: 216.12.206.232 Original-X-Trace: quimby.gnus.org 1046784689 2316 216.12.206.232 (4 Mar 2003 13:31:29 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 4 Mar 2003 13:31:29 GMT User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.2 (windows-nt) Cancel-Lock: sha1:H3IezNBHEPRxqYDV5rqPY9woDqk= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50552 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50552 kai.grossjohann@uni-duisburg.de (Kai Großjohann) writes: > I got a backtrace on agent fetching: > > Debugger entered--Lisp error: (wrong-type-argument listp #[nil "À ?" [gnus-agent-read-p] 1]) > gnus-function-implies-unread-1(#[nil "À ?" [gnus-agent-read-p] 1]) > gnus-predicate-implies-unread((not read)) > gnus-agent-fetch-headers("nntp+gmane:gmane.comp.db.dbworld") > gnus-agent-fetch-group-1("nntp+gmane:gmane.comp.db.dbworld" (nntp "gmane" (nntp-address "news.gmane.org"))) > gnus-agent-fetch-session() > call-interactively(gnus-agent-fetch-session) > > I applied the following patch to make it go away. I am, however, > quite unsure if this was the right thing to do. > > Does anyone know what's the right thing to do? > > Index: lisp/gnus-agent.el > =================================================================== > RCS file: /usr/local/cvsroot/gnus/lisp/gnus-agent.el,v > retrieving revision 6.151 > diff -u -r6.151 gnus-agent.el > --- lisp/gnus-agent.el 4 Mar 2003 01:43:59 -0000 6.151 > +++ lisp/gnus-agent.el 4 Mar 2003 10:55:59 -0000 > @@ -2344,7 +2344,7 @@ > nil) > ((not function) > nil) > - ((symbolp function) > + ((gnus-functionp function) > 'ignore) > ((memq (car function) '(or and not)) > (apply (car function) > We may need both to handle code being interpreted versus compiled. I going to be off-line all day, if you have something that works, please check it in. Thanks, Kevin