From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Latest Org and Carbon Emacs Date: Thu, 09 Jul 2009 16:46:01 -0400 Message-ID: <11651.1247172361@alphaville.usa.hp.com> References: <4A5652B0.7040209@gmx.de> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MP0Wn-0001mI-FF for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 16:47:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MP0Wj-0001kv-Jp for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 16:47:37 -0400 Received: from [199.232.76.173] (port=59708 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MP0Wj-0001km-Bd for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 16:47:33 -0400 Received: from g4t0015.houston.hp.com ([15.201.24.18]:38818) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MP0Wi-0005Ej-PM for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 16:47:32 -0400 In-Reply-To: Message from Karl Maihofer of "Thu, 09 Jul 2009 22:27:28 +0200." <4A5652B0.7040209@gmx.de> 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: Karl Maihofer Cc: Org Mode 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