From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Riley Subject: Re: Org-babel init Date: Mon, 12 Jul 2010 18:29:04 +0200 Message-ID: References: <19515.16766.160745.656932@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=46489 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OYLsf-00067U-Dr for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 12:29:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OYLse-00044U-37 for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 12:29:21 -0400 Received: from lo.gmane.org ([80.91.229.12]:34881) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OYLsd-00044D-Pg for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 12:29:20 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OYLsa-0006zg-CS for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 18:29:16 +0200 Received: from 85.183.18.158 ([85.183.18.158]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 12 Jul 2010 18:29:16 +0200 Received: from rileyrg by 85.183.18.158 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 12 Jul 2010 18:29:16 +0200 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 Jordi Inglada writes: > Hi all, > > I am having the same problem as this user here: > > http://www.mail-archive.com/emacs-orgmode@gnu.org/msg17498.html > > and the contrib/lisp directory is indeed in my load path. > > I am using a git changeset cloned today (Org-mode version 6.34trans > (release_6.36.608.gc1ef)). > > I have tried using "emacs -q" and then loading an .el file containing > only the following lines: > > (setq load-path (cons "/home/inglada/local/src/org-mode/lisp" load-path)) > (setq load-path (cons "/home/inglada/local/src/org-mode/contrib/lisp" load-path)) > > (require 'org-install) > (require 'org-babel-init) > (require 'org-babel-python) > > and I get the same result. > > Thank you very much for your help. > > Jordi > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > I havent looked in detail but I recently had issues with it. Here is my init.el. No idea if its even relevant to be honest, but babel works for elisp files ;) --8<---------------cut here---------------start------------->8--- ;;; init.el --- Where all the magic begins ;; ;; This file loads both ;; - Org-mode : http://orgmode.org/ and ;; - Org-babel: http://orgmode.org/worg/org-contrib/babel/org-babel.php#library-of-babel ;; ;; It then loads the rest of our Emacs initialization from Emacs lisp ;; embedded in literate Org-mode files. ;; Load up Org Mode and Org Babel for elisp embedded in Org Mode files (setq dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name))) (let* ((org-dir (expand-file-name "lisp" (expand-file-name "org-mode" dotfiles-dir))) (org-contrib-dir (expand-file-name "lisp" (expand-file-name "contrib" (expand-file-name ".." org-dir)))) (load-path (append (list org-dir org-contrib-dir (concat org-dir "/babel")) (or load-path nil)))) ;; load up Org-mode and Org-babel (require 'org-install) (require 'ob-tangle) ) ;; load up all literate org-mode files in this directory ;;(mapc #'org-babel-load-file (directory-files dotfiles-dir t "\\.org$")) (org-babel-load-file "~/.emacs.d/emacs-init.org") ;;; init.el ends here --8<---------------cut here---------------end--------------->8--- Hopefully it helps. r.