From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/39214 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Error sending messages Date: Tue, 09 Oct 2001 12:17:30 +0200 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 1035174956 26695 80.91.224.250 (21 Oct 2002 04:35:56 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:35:56 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: (qmail 29664 invoked from network); 9 Oct 2001 10:21:02 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 9 Oct 2001 10:21:02 -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 15qtxE-000133-00; Tue, 09 Oct 2001 05:17:40 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 09 Oct 2001 05:17:17 -0500 (CDT) 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 FAA24647 for ; Tue, 9 Oct 2001 05:17:05 -0500 (CDT) Original-Received: (qmail 29636 invoked by alias); 9 Oct 2001 10:17:23 -0000 Original-Received: (qmail 29631 invoked from network); 9 Oct 2001 10:17:23 -0000 Original-Received: from dolk.extundo.com (195.42.214.242) by gnus.org with SMTP; 9 Oct 2001 10:17:23 -0000 Original-Received: from barbar.josefsson.org (slipsten.extundo.com [195.42.214.241]) (authenticated bits=0) by dolk.extundo.com (8.12.0/8.12.0) with ESMTP id f99AHM0r024966; Tue, 9 Oct 2001 12:17:23 +0200 Original-To: Henrik Enberg In-Reply-To: (Henrik Enberg's message of "Tue, 09 Oct 2001 11:03:51 +0200") Mail-Copies-To: nobody Original-Lines: 20 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.106 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:39214 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:39214 Henrik Enberg writes: > I get the below error when I try to send messages with the latest CVS > Gnus. I think it has something to do with the UTF-8 updates, I had to > do a `cvs update -D 2001-10-06' to get a working Gnus. > > Debugger entered--Lisp error: (wrong-type-argument listp dont-check-for-anything-just-trust-me) > message-check-element(newsgroups) Hm, if you C-h f message-check-element RET and follow the link to where the function is defined, does it look like the below? If it does, I don't understand the backtrace, seems like it should work. (defun message-check-element (type) "Return non-nil if this TYPE is not to be checked." (if (eq message-syntax-checks 'dont-check-for-anything-just-trust-me) t (let ((able (assq type message-syntax-checks))) (and (consp able) (eq (cdr able) 'disabled)))))