From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/75299 Path: news.gmane.org!not-for-mail From: Tommy Kelly Newsgroups: gmane.emacs.gnus.general Subject: Simple lisp question Date: Mon, 20 Dec 2010 10:52:35 -0600 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1292863996 25510 80.91.229.12 (20 Dec 2010 16:53:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 20 Dec 2010 16:53:16 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M23651@lists.math.uh.edu Mon Dec 20 17:53:10 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PUiyz-0003LS-LZ for ding-account@gmane.org; Mon, 20 Dec 2010 17:53:09 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PUiyk-0000Kq-Hw; Mon, 20 Dec 2010 10:52:54 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PUiyj-0000Kd-5O for ding@lists.math.uh.edu; Mon, 20 Dec 2010 10:52:53 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PUiyh-0002ps-Rf for ding@lists.math.uh.edu; Mon, 20 Dec 2010 10:52:52 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PUiyf-0004bB-Lt for ding@gnus.org; Mon, 20 Dec 2010 17:52:49 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PUiyf-0003Cn-6s for ding@gnus.org; Mon, 20 Dec 2010 17:52:49 +0100 Original-Received: from cpe-70-112-150-104.austin.res.rr.com ([70.112.150.104]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Dec 2010 17:52:49 +0100 Original-Received: from tommy.kelly by cpe-70-112-150-104.austin.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Dec 2010 17:52:49 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 29 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: cpe-70-112-150-104.austin.res.rr.com User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (darwin) Cancel-Lock: sha1:p7RrLCwHDEOC1li/ITjJVjtQfuQ= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:75299 Archived-At: Quick lisp question as I dig into nnimap.el (in my attempt to understand and maybe improve the fancy split stramash): Why, in the defun of nnimap-split-incoming-mail, is this written as it is: (let ( (nnimap-incoming-split-list nil) ... new-articles ) ...) And not like this: (let ( nnimap-incoming-split-list ... new-articles ) ...) In other words, why is the setting to nil of nimap-incoming-split-list and news-articles done differently? Just a coding quirk, or a deep and mysterious reason? thanks, Tommy