From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47183 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus always loads cl Date: Tue, 15 Oct 2002 07:46:33 +0900 Organization: Emacsen advocacy group Sender: owner-ding@hpc.uh.edu Message-ID: References: <87u1jolt7k.fsf@crybaby.cs.uni-dortmund.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1034635703 15673 80.91.224.249 (14 Oct 2002 22:48:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 14 Oct 2002 22:48:23 +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 181E0b-00044W-00 for ; Tue, 15 Oct 2002 00:48:21 +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 181DzQ-0001Rk-00; Mon, 14 Oct 2002 17:47:08 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 14 Oct 2002 17:47:51 -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 RAA00326 for ; Mon, 14 Oct 2002 17:47:40 -0500 (CDT) Original-Received: (qmail 11666 invoked by alias); 14 Oct 2002 22:48:28 -0000 Original-Received: (qmail 11659 invoked from network); 14 Oct 2002 22:48:28 -0000 Original-Received: from unknown (HELO mars.web-hosting.com) (207.228.244.150) by gnus.org with SMTP; 14 Oct 2002 22:48:28 -0000 Original-Received: from localhost ([207.228.245.242]) by mars.web-hosting.com (8.11.1/8.11.1) with ESMTP id g9EMkkn05243 for ; Mon, 14 Oct 2002 18:46:46 -0400 (EDT) Original-To: ding@gnus.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.4 (Military Intelligence (RC3), 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:bRodgMftwRt/A8te3Z+qYwLl2JE= X-Hashcash: 021014:ding@gnus.org:963fa4ef62308b91 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47183 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47183 >>>>> In <87u1jolt7k.fsf@crybaby.cs.uni-dortmund.de> >>>>> Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro=DFjohann) wrote: >> I've believed for a long time that we must not load cl while >> running Gnus. It seems that it is required by FSF Emacs or RMS. Kai> Yes. But this holds for Emacs only, so since new Gnus versions will Kai> be added only to new Emacs versions, it should be okay to require cl Kai> in Emacs 20. That's quite lucid! Thank you. I've added the following lines in spam-stat.el instantly. (eval-and-compile (when (=3D emacs-major-version 20) ;; gethash, hash-table-count, make-hash-table, mapc (require 'cl) (defalias 'puthash 'cl-puthash))) (eval-when-compile (unless (fboundp 'with-syntax-table) ;; Imported from Emacs 21.2 (defmacro with-syntax-table (table &rest body) [...] --=20 Katsumi Yamaoka