From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Gnutux Newsgroups: gmane.emacs.help Subject: Re: add directories to load-path Date: Tue, 15 Sep 2009 20:52:15 +0900 Message-ID: <87tyz44e8g.wl%tuxliste@gmail.com> References: <87zl8w3h26.fsf@online.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1253077599 1554 80.91.229.12 (16 Sep 2009 05:06:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 16 Sep 2009 05:06:39 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 16 07:06:32 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Mnmit-0007ZX-8r for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Sep 2009 07:06:31 +0200 Original-Received: from localhost ([127.0.0.1]:39600 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mnmis-0002Fq-EU for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Sep 2009 01:06:30 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MnWZ3-0004wB-Lf for help-gnu-emacs@gnu.org; Tue, 15 Sep 2009 07:51:17 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MnWYv-0004qS-A0 for help-gnu-emacs@gnu.org; Tue, 15 Sep 2009 07:51:13 -0400 Original-Received: from [199.232.76.173] (port=33510 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnWYt-0004pZ-DN for help-gnu-emacs@gnu.org; Tue, 15 Sep 2009 07:51:07 -0400 Original-Received: from mail-yw0-f178.google.com ([209.85.211.178]:46821) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MnWYr-00061k-M7 for help-gnu-emacs@gnu.org; Tue, 15 Sep 2009 07:51:05 -0400 Original-Received: by ywh8 with SMTP id 8so6369008ywh.14 for ; Tue, 15 Sep 2009 04:51:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:message-id:from:to :subject:in-reply-to:references:user-agent:mime-version:content-type; bh=uKrm+hG0kc9lt0OClxLIuDx8663DXUzKHEIJytcdfw0=; b=eQWVhe3zcpgduXJFIQD/hM7nRUpj5kDhWbp3+k1hT1kFX5ZWEUHybCtkj6mY1GDJM9 3wf/nJ8mj1elWxrf4wLva4O4+UJy+GTxFK3S2px6uiGvaD163clndFkr2GPtQckoG7QC SS2xUHB67fYiWMTzBaWoKbSCa8Q4yWKPvVIjM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:message-id:from:to:subject:in-reply-to:references:user-agent :mime-version:content-type; b=eZnNu7TDxEzDYRAf2qdAZ+bjkWmdQUC6+3G6s7hY1XW+ZHwzYZFrZSHpm9jTNnCAJE NGc7bdrHRdxPoFeAmV3MUFETdnusNLpSEkHFtWUgWQcRhVG+DFzx67d0WZ2dYiv8uN8W DGrBjOl/HjoQ/2mwwIJuVA8ryfa4Fx6c3otZA= Original-Received: by 10.90.143.16 with SMTP id q16mr4580628agd.26.1253015464146; Tue, 15 Sep 2009 04:51:04 -0700 (PDT) Original-Received: from TdM.gmail.com (softbank219185161154.bbtec.net [219.185.161.154]) by mx.google.com with ESMTPS id 32sm8694455aga.70.2009.09.15.04.51.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 15 Sep 2009 04:51:03 -0700 (PDT) In-Reply-To: <87zl8w3h26.fsf@online.de> User-Agent: Wanderlust/2.15.7 (Almost Unreal) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-Mailman-Approved-At: Wed, 16 Sep 2009 00:43:41 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:68194 Archived-At: That should do the job. :-) ; Load recursively a folder (defconst elisp-path '("~/.emacs.d")) (mapcar '(lambda(p) (add-to-list 'load-path p) (cd p) (normal-top-level-add-subdirs-to-load-path)) elisp-path)