From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Horn Subject: Re: Babel related bug in elpa version 20121231 Date: Sat, 05 Jan 2013 11:40:49 -0500 Message-ID: References: <1342018996.75825.YahooMailNeo@web29804.mail.ird.yahoo.com> <8738ygbpvg.fsf@Rainer.invalid> <87mwworttu.fsf@Rainer.invalid> <87wqvrc2hu.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44194) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TrWnm-0008Vx-TA for emacs-orgmode@gnu.org; Sat, 05 Jan 2013 11:40:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TrWnj-0005rA-Vw for emacs-orgmode@gnu.org; Sat, 05 Jan 2013 11:40:54 -0500 Received: from mailbackend.panix.com ([166.84.1.89]:42453) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TrWnj-0005r1-MQ for emacs-orgmode@gnu.org; Sat, 05 Jan 2013 11:40:51 -0500 In-Reply-To: <87wqvrc2hu.fsf@bzg.ath.cx> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien , Achim Gratz Cc: emacs-orgmode@gnu.org Bastien writes: > > I also wish Emacs can read an ~/.emacs.org init file. > That is what the starterkit for emacs 24 is attempting to do. It's got a ~/init.el that is just #+begin_src emacs-lisp (setq starter-kit-dir (file-name-directory (or load-file-name (buffer-file-name)))) ;; load up the starter kit (org-babel-load-file (expand-file-name "starter-kit.org" starter-kit-dir)) #+end_src All of my problems seem to arise from the bad interactions between starting with the built-in package version of org that is used by the org-babel-load-file, and then transitioning part way through its execution of the starter-kit.org to the elpa updated version of org. The result is much like a mixed version install of org. Strange things go wrong. I like having the nicely formatted and documented setup that I get with an export to html of the org files that contain the startup scripts. My intended mode of operation is to have a customized set of starterkit.org files that can apply to everyone, with each user also having a ~/.emacs.d/.org and a ~/.emacs.d/.org to provide further user customizations, including per machine variations for users who need different setups on different machines. R Horn rjhorn@alum.mit.edu