From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-15?Q?Andreas_R=F6hler?= Subject: Re: python sessions Date: Tue, 26 Mar 2013 07:29:45 +0100 Message-ID: <51514059.1020902@easy-emacs.de> References: <51496061.20706@easy-emacs.de> <514AB9FC.3050601@easy-emacs.de> <87d2ut2o5m.fsf@bzg.ath.cx> <514AC116.7030408@easy-emacs.de> <877gkxrbgn.fsf@gmail.com> <514EAF96.3030402@easy-emacs.de> <17915.1364144298@alphaville> <18546.1364150504@alphaville> <5150B790.2040603@easy-emacs.de> <87boa7upoc.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKNND-00029E-5g for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 02:28:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKNNB-0002rn-VG for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 02:28:43 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:61677) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKNNB-0002rO-MC for emacs-orgmode@gnu.org; Tue, 26 Mar 2013 02:28:41 -0400 In-Reply-To: <87boa7upoc.fsf@gmail.com> 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: Eric Schulte Cc: emacs-orgmode Am 25.03.2013 22:37, schrieb Eric Schulte: >> running into this, func def seems missing: >> >> Debugger entered--Lisp error: (void-function org-babel-result-cond) > > My guess is that you have a mixed install. You are mostly running the > Org-mode which ships with Emacs (in which `org-babel-result-cond' is not > defined), but you are running the version of ob-python.el from the > master branch (which expects `org-babel-result-cond' to be defined). > > This is an increasingly common problem. Maybe the following can help. > http://orgmode.org/worg/org-faq.html#keeping-current-with-Org-mode-development > > Hmm, don't see there anything to change wrt to the issue. Have in my init (defun ar-load-feature-org-mode () (interactive) (add-to-list 'load-path "MY_PATH/feature-org-mode") (add-to-list 'load-path "MY_PATH/feature-org-mode/lisp") (find-file "MY_PATH/feature-org-mode/lisp/ob-python.el") (load "MY_PATH/feature-org-mode/lisp/org-compat.el" nil t) (load "MY_PATH/feature-org-mode/lisp/ob-comint.el" nil t) (load "MY_PATH/feature-org-mode/lisp/ob-emacs-lisp.el" nil t) (load "MY_PATH/feature-org-mode/lisp/org.el" nil t) (load "MY_PATH/feature-org-mode/lisp/ob-eval.el" nil t) (load "MY_PATH/feature-org-mode/lisp/ob.el" nil t) (load "MY_PATH/feature-org-mode/lisp/ob-python.el") ;; (load "MY_PATH/feature-org-mode/testing/org-test-ob-consts.el" nil t) ;; (load "MY_PATH/feature-org-mode/testing/org-test.el" nil t) (load-this-directory "MY_PATH/feature-org-mode/lisp") (org-babel-do-load-languages 'org-babel-load-languages '( (sh . t) (python . t)))) Maybe should unload existing org-mode first. Checking for existing features yields: org-agenda org-bbdb org-bibtex org-compat org-docview org-entities org-exp org-exp-blocks org-faces org-footnote org-gnus org-html org-info org-infojs org-irc org-jsinfo org-list org-loaddefs org-macs org-mew org-mhe org-pcomplete org-rmail org-src org-version org-vm org-w3m org-wl ;;;;;;;; Thanks, Andreas