From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Why are there two dolist? Date: Wed, 12 Aug 2009 00:36:55 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1250030240 32273 80.91.229.12 (11 Aug 2009 22:37:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 11 Aug 2009 22:37:20 +0000 (UTC) To: Emacs-Devel devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 12 00:37:13 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Mazxt-0003Uv-Bg for ged-emacs-devel@m.gmane.org; Wed, 12 Aug 2009 00:37:09 +0200 Original-Received: from localhost ([127.0.0.1]:42012 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mazxr-0006rG-Im for ged-emacs-devel@m.gmane.org; Tue, 11 Aug 2009 18:37:07 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mazxm-0006oj-C2 for emacs-devel@gnu.org; Tue, 11 Aug 2009 18:37:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mazxh-0006nW-KZ for emacs-devel@gnu.org; Tue, 11 Aug 2009 18:37:01 -0400 Original-Received: from [199.232.76.173] (port=38217 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mazxh-0006nQ-HG for emacs-devel@gnu.org; Tue, 11 Aug 2009 18:36:57 -0400 Original-Received: from mail-yx0-f172.google.com ([209.85.210.172]:36125) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mazxh-0003Iz-4K for emacs-devel@gnu.org; Tue, 11 Aug 2009 18:36:57 -0400 Original-Received: by yxe2 with SMTP id 2so5528728yxe.14 for ; Tue, 11 Aug 2009 15:36:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=r5pd25/lSc8K5Y3gjz3iUnv+obim/0alkRkw2uzxx/s=; b=T/wy7pJdLgfZkNzHyeTL4au3kZx5GeECa+0pSFiJyDrQJs1gfD0mTk06Vm/nUT0nBe 7z2twd+Y+lYifK19Xy3awRMGABGXk0jLhnXxcgpnspHoHF6TTrtNQoNYeJZ43kXrdI+a 8rIOMYdFC+u/0+0aC8DQNXesRvze4WZwJ47LA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=aFvqAxH++K33tHIciIuLPWsYYpUNoynGVBlq3FJi0W6C5pk2h4iNhW88hrIDlgIsuh 2dwh93Lihsj9DPGYLk4NVkR5g9gf7DLLsbBsEulEHa9We4k3xZvcV0v6ev8UpT6LfnfQ 68M8tKHagm0KgKmJo0tP7coMj8DEKq2B+TifQ= Original-Received: by 10.100.96.4 with SMTP id t4mr6059352anb.170.1250030215362; Tue, 11 Aug 2009 15:36:55 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:114102 Archived-At: On Wed, Aug 12, 2009 at 12:14 AM, Lennart Borgman wrote: > And shouldn't they say that you do not have to intern/declare VAR? - There is one definition in subr.el and one in cl-macro.el. (I think I said this before.) - And I meant it should say that the variable is let bound inside dolist, ie there is a (let ((VAR ...) inside the defmacro dolist. That is not clear to from the doc string. The word "bound" there could equally well mean that (setq VAR ...) was used.