From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/50516 Path: main.gmane.org!not-for-mail From: kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: Limiting number of Incomingxxxx mails Date: Mon, 03 Mar 2003 18:07:24 +0100 Organization: University of Duisburg, Germany Sender: owner-ding@hpc.uh.edu Message-ID: <84of4sz8dv.fsf@lucy.is.informatik.uni-duisburg.de> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1046711270 6627 80.91.224.249 (3 Mar 2003 17:07:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 3 Mar 2003 17:07:50 +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 18ptPp-0001ik-00 for ; Mon, 03 Mar 2003 18:07:49 +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 18ptPq-0000Fo-00; Mon, 03 Mar 2003 11:07:50 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 03 Mar 2003 11:08:50 -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 LAA27986 for ; Mon, 3 Mar 2003 11:08:37 -0600 (CST) Original-Received: (qmail 595 invoked by alias); 3 Mar 2003 17:07:32 -0000 Original-Received: (qmail 590 invoked from network); 3 Mar 2003 17:07:32 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by 66.230.238.6 with SMTP; 3 Mar 2003 17:07:32 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 18pti3-00066u-00 for ; Mon, 03 Mar 2003 18:26:39 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 13 Original-NNTP-Posting-Host: pd951f227.dip.t-dialin.net Original-X-Trace: quimby.gnus.org 1046712399 23491 217.81.242.39 (3 Mar 2003 17:26:39 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 3 Mar 2003 17:26:39 GMT User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.3.50 (i686-pc-linux-gnu) Cancel-Lock: sha1:+WJ+hnaLucuM7S7ym6lK7QIFyZw= Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:50516 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:50516 Reiner Steib <4.uce.03.r.s@nurfuerspam.de> writes: > + (while files > + (let* ((ffile (car files)) > [...] > + (setq files (cdr files)) This can be simplified to (let* ((ffile (pop files)) ...) ...). (Unless you need the old value of files between the let* line and the setq line -- I didn't look.) -- A preposition is not a good thing to end a sentence with.