From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Neff Subject: Good way to try new org-mode code? Date: Wed, 30 Jun 2010 15:50:01 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=53108 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OU4EO-0002bF-6H for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 16:50:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OU4EM-0002hn-TE for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 16:50:04 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:47120) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OU4EM-0002hi-Nw for emacs-orgmode@gnu.org; Wed, 30 Jun 2010 16:50:02 -0400 Received: by wyb39 with SMTP id 39so1398574wyb.0 for ; Wed, 30 Jun 2010 13:50:01 -0700 (PDT) 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 I'm using git to track org-mode, and would like to know if there's a way to switch branches / mess with code in org-mode without having to run make and make install when I want to test the new code. Currently, I have org-mode code in my ~/.emacs.d/src/org directory, and I add this directory to my load-path in my emacs file: ;; Add org-mode to path (setq load-path (cons "~/.emacs.d/src/org/contrib/lisp" load-path)) (setq load-path (cons "~/.emacs.d/src/org/lisp" load-path)) If I switch branches, or change some code in the above directory, I don't think the new code is used by emacs unless I run make clean && make && sudo make install Is there a way to have emacs read the org-mode source code "on the fly" without having to run make, make install, etc? Is there a way to run new code without restarting Emacs? Thanks, --Nate