From mboxrd@z Thu Jan 1 00:00:00 1970 From: Karl Maihofer Subject: Re: Latest Org and Carbon Emacs Date: Thu, 09 Jul 2009 23:09:50 +0200 Message-ID: <4A565C9E.8010804@gmx.de> References: <4A5652B0.7040209@gmx.de> <11651.1247172361@alphaville.usa.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MP0sS-0001d2-Oq for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:10:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MP0sN-0001cU-7o for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:09:59 -0400 Received: from [199.232.76.173] (port=59201 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MP0sN-0001cR-4K for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:09:55 -0400 Received: from smtprelay09.ispgateway.de ([80.67.29.23]:38478) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MP0sM-0000Qz-HP for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:09:54 -0400 In-Reply-To: <11651.1247172361@alphaville.usa.hp.com> 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: nicholas.dokos@hp.com Cc: Org Mode Thanks! I was able to find the org-lisp-files of the old org-version with "locate-library". Then I renamed the files and added the following to my configuration: (require 'org-latex) Now LaTeX export works! Thanks again! Karl Nick Dokos schrieb: > Karl Maihofer wrote: > > >> Until now I used Org with Debian GNU/Linux. Today I bought a MacBook >> Pro 13" and I spent the evening making my first steps with MacOS. I >> installed the Carbon Emacs package and configured Emacs to use the >> latest Org-Version that I copied to ~/elisp/org-mode/. >> >> (add-to-list 'load-path "~/elisp/org-mode/lisp/") >> (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) >> >> When I try to export an org-file to LaTeX I get the following error: >> >> org-export-latex-first-lines: Symbol's function definition is void: >> org-cleaned-string-for-export >> >> I think I saw this error already some time ago and the reason was, >> that an old org-version conflicts with the one I use. Under Debian I >> renamed the Org-elisp-files in the Emacs-Program-Directory and the >> problem was solved. But under MacOS I cannot find these files - as I >> wrote, I am completely new to MacOS. I scanned the Folders >> /Applications/Emacs.app/* but couldn't find the org elisp files. >> >> Could anybody give me a hint where to find the files and how to solve >> my problem? >> >> > > You are missing a > > (require 'org-install) > > after the load path is set. > > HTH, > Nick > > PS. Checking org-version is always a good idea: M-x org-version > > You can find where emacs is picking up the files by evaluating this: > (locate-library "org") > > or interactively: > M-x locate-library org > >