From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea Crotti Subject: org beamer conflicts Date: Fri, 10 Dec 2010 22:39:53 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=52387 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PRAhH-0003aq-IK for emacs-orgmode@gnu.org; Fri, 10 Dec 2010 16:40:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PRAhE-00067J-Gg for emacs-orgmode@gnu.org; Fri, 10 Dec 2010 16:40:11 -0500 Received: from lo.gmane.org ([80.91.229.12]:42634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PRAhE-00066x-8f for emacs-orgmode@gnu.org; Fri, 10 Dec 2010 16:40:08 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PRAhC-0001Vd-TZ for emacs-orgmode@gnu.org; Fri, 10 Dec 2010 22:40:06 +0100 Received: from ip1-201.halifax.rwth-aachen.de ([137.226.108.201]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Dec 2010 22:40:06 +0100 Received: from andrea.crotti.0 by ip1-201.halifax.rwth-aachen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Dec 2010 22:40:06 +0100 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 I noticed a strange problem. My emacs configuration uses orgmode from git, and loads it in this way: (defun make-conf-path (path) (expand-file-name (concat base path))) (add-to-list 'load-path (make-conf-path "org-mode/lisp")) (add-to-list 'load-path (make-conf-path "org-mode/contrib/babel/lisp")) (add-to-list 'load-path (make-conf-path "org-mode/contrib/babel/lisp/langs")) ;; this variable must be set BEFORE org-mode is loaded or it will have no effect (setq org-replace-disputed-keys t) (require 'org) On an ubuntu 10.10 machine (with emacs 23.1) I wanted to use org-beamer, and even if locate-library told me that I was using the right orgmode (not the one shipped in) the variable org-export-latex-classes didn't contain the entry "beamer", and then I could not export my presentation. I fixed it using instead of require->load-file, but what I don't understand is why it was using the other version, when locate-library told me something else. Any idea?