From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Choosing local org package instead of sitewide Date: Wed, 08 Jul 2009 21:29:06 +0200 Message-ID: <87r5wrezy5.fsf@kassiopeya.MSHEIMNETZ> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MOclN-0000cz-Vx for emacs-orgmode@gnu.org; Wed, 08 Jul 2009 15:25:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MOclJ-0000ay-C8 for emacs-orgmode@gnu.org; Wed, 08 Jul 2009 15:25:05 -0400 Received: from [199.232.76.173] (port=43952 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MOclJ-0000at-1O for emacs-orgmode@gnu.org; Wed, 08 Jul 2009 15:25:01 -0400 Received: from mail.gmx.net ([213.165.64.20]:39718) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MOclI-0007v3-IO for emacs-orgmode@gnu.org; Wed, 08 Jul 2009 15:25:00 -0400 In-Reply-To: (Kyle Sexton's message of "Wed, 8 Jul 2009 13:57:57 -0500") 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: Kyle Sexton Cc: org-mode mailing list Kyle Sexton writes: > I would like to run a local copy of org pulled from the latest git instead > of the sitewide version installed with emacs. How can I specify that emacs > should use the copy in my ~/elisp/org directory instead of the sitewide > version? > > Probably a simple question, but deleting the sitewide org directory doesn't > seem like the right solution. :P Hm - depends on how you install emacs. I follow the CVS emacs as well and remove the /usr/local/share/emacs/23.X.Y/lisp/org/ directory after each re-install. But: http://www.emacswiki.org/emacs/LoadPath states: The variable load-path lists all the directories where Emacs should look for elisp files. They are searched in order. The first file found is used, therefore the order of the directories might be relevant. This should use the GIT version (assumed it's in ~/.emacs.d/lisp/org): (add-to-list 'load-path "~/.emacs.d/lisp/org/") Sebastian