From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/46222 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: new spam functionality added Date: Fri, 23 Aug 2002 11:42:04 +0900 Organization: Emacsen advocacy group Sender: owner-ding@hpc.uh.edu Message-ID: References: <87y9brejam.fsf@mail.paradoxical.net> <873ctztyth.fsf@mail.paradoxical.net> <87bs8nsh7g.fsf@mail.paradoxical.net> <87fzxziifw.fsf@wesley.springies.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1030070611 27504 127.0.0.1 (23 Aug 2002 02:43:31 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 23 Aug 2002 02:43:31 +0000 (UTC) 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 17i4Q6-00079V-00 for ; Fri, 23 Aug 2002 04:43:30 +0200 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 17i4PQ-0003Tn-00; Thu, 22 Aug 2002 21:42:48 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 22 Aug 2002 21:43:19 -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 VAA01613 for ; Thu, 22 Aug 2002 21:43:06 -0500 (CDT) Original-Received: (qmail 15119 invoked by alias); 23 Aug 2002 02:42:30 -0000 Original-Received: (qmail 15114 invoked from network); 23 Aug 2002 02:42:29 -0000 Original-Received: from unknown (HELO mars.web-hosting.com) (207.228.244.150) by gnus.org with SMTP; 23 Aug 2002 02:42:29 -0000 Original-Received: from localhost ([207.228.245.242]) by mars.web-hosting.com (8.11.1/8.11.1) with ESMTP id g7N2gST24426 for ; Thu, 22 Aug 2002 22:42:28 -0400 (EDT) Original-To: ding@gnus.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.4 (Informed Management (RC2), sparc-sun-solaris2.6) X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( Cancel-Lock: sha1:EnLXPtEf2NWZZEQ1bS20ZRYl6kA= X-Hashcash: 020823:ding@gnus.org:c6687f3682201249 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:46222 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:46222 --=-=-= >>>>> In >>>>> Ted Zlatanov wrote: > Debugger entered--Lisp error: (args-out-of-range 1 3) > query-dns("100.191.110.198.dev.null.dk") I don't know what has occurred, but does the following patch help? --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- dns.el~ 2002-04-30 02:01:11 +0000 +++ dns.el 2002-08-23 02:40:55 +0000 @@ -328,7 +328,7 @@ (delete-process process)) (when tcp-p (goto-char (point-min)) - (delete-region (point) (+ (point) 2))) + (delete-region (point) (min (+ (point) 2) (point-max)))) (unless (zerop (buffer-size)) (let ((result (dns-read (buffer-string)))) (if fullp --=-=-=--