From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: Latest Org and Carbon Emacs Date: Thu, 09 Jul 2009 16:32:20 -0500 Message-ID: <87prc9h7a3.fsf@fastmail.fm> References: <4A5652B0.7040209@gmx.de> 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 1MP1ED-0002JS-7h for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:32:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MP1E7-0002IW-JK for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:32:27 -0400 Received: from [199.232.76.173] (port=53922 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MP1E7-0002IT-Dw for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:32:23 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:56578) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MP1E7-0005se-3k for emacs-orgmode@gnu.org; Thu, 09 Jul 2009 17:32:23 -0400 In-Reply-To: <4A5652B0.7040209@gmx.de> (Karl Maihofer's message of "Thu, 09 Jul 2009 22:27:28 +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: Karl Maihofer Cc: Org Mode Karl Maihofer writes: > 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/. I'll have to rely on my memory here, since I went in the opposite direction (from MacOS to GNU/Linux). ;) > (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. If I remember correctly. the old org lisp files are located in /Applications/Emacs.app/Contents/Resources/lisp/textmodes. I found it easiest to install the new org files directly to the Emacs.app directory. And fortunately, I still have my Makefile modifications in an org-file: --8<---------------cut here---------------start------------->8--- # Name of your emacs binary EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs # Where local software is found prefix=/usr/local # Where local lisp files go. lispdir = /Applications/Emacs.app/Contents/Resources/site-lisp # Where info files go. infodir = /Applications/Emacs.app/Contents/Resources/info --8<---------------cut here---------------end--------------->8--- If you install the files to site-lisp, they are loaded instead of the files in lisp/textmodes. Best, Matt