From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50550 Path: main.gmane.org!not-for-mail From: kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) Newsgroups: gmane.emacs.gnus.general Subject: Backtrace on agent fetching Date: Tue, 04 Mar 2003 11:37:40 +0100 Organization: University of Duisburg, Germany Sender: owner-ding@hpc.uh.edu Message-ID: <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 1046774311 5514 80.91.224.249 (4 Mar 2003 10:38:31 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 4 Mar 2003 10:38:31 +0000 (UTC) Original-X-From: owner-ding@hpc.uh.edu Tue Mar 04 11:38:29 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 18q9oX-0001QU-00 for ; Tue, 04 Mar 2003 11:38:25 +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 18q9oD-0006D0-00; Tue, 04 Mar 2003 04:38:05 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 04 Mar 2003 04:39:04 -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 EAA00450 for ; Tue, 4 Mar 2003 04:38:52 -0600 (CST) Original-Received: (qmail 38177 invoked by alias); 4 Mar 2003 10:37:48 -0000 Original-Received: (qmail 38172 invoked from network); 4 Mar 2003 10:37:48 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by 66.230.238.6 with SMTP; 4 Mar 2003 10:37:48 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 18qA6l-0007g2-00 for ; Tue, 04 Mar 2003 11:57:15 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 34 Original-NNTP-Posting-Host: lucy.is.informatik.uni-duisburg.de Original-X-Trace: quimby.gnus.org 1046775435 29491 134.91.35.216 (4 Mar 2003 10:57:15 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 4 Mar 2003 10:57:15 GMT User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:p8sQMVblB7RWLpSk4lYX3HMnmjY= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50550 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50550 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) -- A preposition is not a good thing to end a sentence with.