From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50347 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: spam-get-article-as-filename needed? Date: Mon, 24 Feb 2003 11:57:04 -0600 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1046109569 21398 80.91.224.249 (24 Feb 2003 17:59:29 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 24 Feb 2003 17:59:29 +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 18nMrs-0005TL-00 for ; Mon, 24 Feb 2003 18:58:21 +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 18nMr0-0004Ez-00; Mon, 24 Feb 2003 11:57:26 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 24 Feb 2003 11:58:25 -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 LAA06639 for ; Mon, 24 Feb 2003 11:58:14 -0600 (CST) Original-Received: (qmail 6938 invoked by alias); 24 Feb 2003 17:57:10 -0000 Original-Received: (qmail 6933 invoked from network); 24 Feb 2003 17:57:09 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by 66.230.238.6 with SMTP; 24 Feb 2003 17:57:09 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 18nN64-0007jq-00 for ; Mon, 24 Feb 2003 19:13:00 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 24 Original-NNTP-Posting-Host: h-66-134-21-50.hstqtx02.covad.net Original-X-Trace: quimby.gnus.org 1046110380 29749 66.134.21.50 (24 Feb 2003 18:13:00 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 24 Feb 2003 18:13:00 GMT User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.2 Cancel-Lock: sha1:YNe2HuFVGaM0quHi2m48qitKFRk= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50347 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50347 I was looking at the compilation logs only to see that spam.el generated a couple of warning messages concerning nnml-current-directory and nnml-possibly-change-directory. After checking a little further, I found that 1) The only dependencies to nnml are in spam-get-article-as-filename. 2) spam-get-article-as-filename is functionally equivalent to nnml-article-to-file except that the later appears to handle compressed files (see nnml-use-compressed-files). 3) I can't find any calls to spam-get-article-as-filename. I don't want to touch spam.el since I'm not at all familiar with that code. Still, I'd like to see the compilation warnings resolved. It seems to me that the options are: 1) Add (require 'nnml) to spam.el 2) Delete spam-get-article-as-filename 3) Rewrite spam-get-article-as-filename to implicitly depend on nnml-article-as-file. For example, (defun spam-get-article-as-filename (article) (funcall 'nnml-article-to-file article)) Kevin