From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea Crotti Subject: Tangling Date: Fri, 09 Apr 2010 11:17:43 +0200 Message-ID: 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 1O0ALl-0007AW-Dx for emacs-orgmode@gnu.org; Fri, 09 Apr 2010 05:18:05 -0400 Received: from [140.186.70.92] (port=44582 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0ALh-00079g-J7 for emacs-orgmode@gnu.org; Fri, 09 Apr 2010 05:18:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O0ALf-0007qs-UL for emacs-orgmode@gnu.org; Fri, 09 Apr 2010 05:18:01 -0400 Received: from lo.gmane.org ([80.91.229.12]:44573) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O0ALf-0007qo-N3 for emacs-orgmode@gnu.org; Fri, 09 Apr 2010 05:17:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O0ALd-0006lf-Iv for emacs-orgmode@gnu.org; Fri, 09 Apr 2010 11:17:57 +0200 Received: from xdsl-78-35-137-144.netcologne.de ([78.35.137.144]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 09 Apr 2010 11:17:57 +0200 Received: from andrea.crotti.0 by xdsl-78-35-137-144.netcologne.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 09 Apr 2010 11:17:57 +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 So for my presentation I'm preparing a minimal emacs configuration which will have - org-mode/babel - python mode - yasnippet/auto complete And it will be everything here http://github.com/AndreaCrotti/Org-mode-notes I'm running Org-mode version 6.34trans on GNU Emacs 23.1.50.1 (i386-apple-darwin9.8.0, NS apple-appkit-949.54) of 2009-09-16 on neutron.local But I don't know why I'm not able to tangle anything and then load the elisp code from an org-mode file. --8<---------------cut here---------------start------------->8--- ELISP> (org-babel-load-file "/Users/andrea/Documents/pycon/miniconf.org") *** Eval error *** No buffer named miniconf.org --8<---------------cut here---------------end--------------->8--- But the file is actually there, or like this --8<---------------cut here---------------start------------->8--- ELISP> (org-babel-tangle "/Users/andrea/Documents/pycon/miniconf.org") nil --8<---------------cut here---------------end--------------->8--- And it doesn't export any source even if it looks something like this --8<---------------cut here---------------start------------->8--- * Org mode ** Clock configuration #+begin_src elisp :tangle yes ;; Clock configuration (setq org-clock-persist t) (org-clock-persistence-insinuate) #+end_src --8<---------------cut here---------------end--------------->8--- Any idea?