From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/41799 Path: main.gmane.org!not-for-mail From: Paul Stodghill Newsgroups: gmane.emacs.gnus.general Subject: Re: Is there a new agent bug? Date: Wed, 09 Jan 2002 14:48:22 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035177139 8019 80.91.224.250 (21 Oct 2002 05:12:19 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:12:19 +0000 (UTC) Cc: Return-Path: Original-Received: (qmail 24808 invoked from network); 9 Jan 2002 19:50:04 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 9 Jan 2002 19:50:04 -0000 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 16OOiO-0004lM-00; Wed, 09 Jan 2002 13:48:48 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 09 Jan 2002 13:48:40 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id NAA17628 for ; Wed, 9 Jan 2002 13:48:29 -0600 (CST) Original-Received: (qmail 24784 invoked by alias); 9 Jan 2002 19:48:32 -0000 Original-Received: (qmail 24779 invoked from network); 9 Jan 2002 19:48:32 -0000 Original-Received: from postoffice.mail.cornell.edu (132.236.56.7) by gnus.org with SMTP; 9 Jan 2002 19:48:32 -0000 Original-Received: from dhcp97-236.cs.cornell.edu.cs.cornell.edu (dhcp97-236.cs.cornell.edu [128.84.97.236]) by postoffice.mail.cornell.edu (8.9.3/8.9.3) with ESMTP id OAA01045; Wed, 9 Jan 2002 14:48:27 -0500 (EST) Original-To: Harry Putnam In-Reply-To: (Harry Putnam's message of "Wed, 09 Jan 2002 09:51:18 -0800") Original-Lines: 27 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Common Lisp, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:41799 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:41799 >>>>> "Harry" == Harry Putnam writes: Harry> Debugger entered--Lisp error: (wrong-type-argument consp nil) Harry> setcar(nil true) (lambda (predicate) (setcar (cdr ...) Harry> predicate) (gnus-category-write) Harry> (gnus-category-list))(true) gnus-edit-form-done() Harry> call-interactively(gnus-edit-form-done) Harry> Creating the News/agent/lib directory by hand doesn't help. I Harry> get the same backtrace Harry> Can anyone confirm that there is a problem there? Or is it Harry> something local? I see this too with a non-cvs version of 0.04. I believe that this is the correct fix, --- lisp/gnus-agent.el.orig2 Wed Jan 9 14:45:57 2002 +++ lisp/gnus-agent.el Wed Jan 9 14:47:49 2002 @@ -1378,7 +1378,7 @@ (gnus-category-position-point))) (defun gnus-category-name () - (or (get-text-property (gnus-point-at-bol) 'gnus-category) + (or (intern (get-text-property (gnus-point-at-bol) 'gnus-category)) (error "No category on the current line"))) (defun gnus-category-read ()