From mboxrd@z Thu Jan 1 00:00:00 1970 From: PT Subject: Re: Fast traversing directories Date: Sat, 31 Oct 2009 18:09:15 +0000 (UTC) Message-ID: References: <87skczlc2v.fsf@in-ulm.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N4IOX-0001XX-VE for emacs-orgmode@gnu.org; Sat, 31 Oct 2009 14:09:46 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N4IOS-0001TI-R2 for emacs-orgmode@gnu.org; Sat, 31 Oct 2009 14:09:45 -0400 Received: from [199.232.76.173] (port=44077 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4IOS-0001TF-Nv for emacs-orgmode@gnu.org; Sat, 31 Oct 2009 14:09:40 -0400 Received: from lo.gmane.org ([80.91.229.12]:52517) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N4IOS-0005tu-7z for emacs-orgmode@gnu.org; Sat, 31 Oct 2009 14:09:40 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1N4IOP-0000ki-Ve for emacs-orgmode@gnu.org; Sat, 31 Oct 2009 19:09:38 +0100 Received: from 94-21-222-39.pool.digikabel.hu ([94.21.222.39]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2009 19:09:37 +0100 Received: from spamfilteraccount by 94-21-222-39.pool.digikabel.hu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 31 Oct 2009 19:09:37 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org andrea Crotti gmail.com> writes: > > (dolist ((d org-directories)) The loop is not run, because there are too many parens. Try this instead: (dolist (d org-directories)