From mboxrd@z Thu Jan 1 00:00:00 1970 From: srandby@gmail.com Subject: Re: checkbox cookies Date: Wed, 20 Aug 2008 09:49:44 -0400 Message-ID: <48AC20F8.8000503@gmail.com> References: <48AAE6AE.40806@unibas.ch> <48ABC2BB.2080907@unibas.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KVo5u-0002cW-06 for emacs-orgmode@gnu.org; Wed, 20 Aug 2008 09:51:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KVo5s-0002cB-Gn for emacs-orgmode@gnu.org; Wed, 20 Aug 2008 09:51:24 -0400 Received: from [199.232.76.173] (port=34293 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KVo5s-0002c4-BU for emacs-orgmode@gnu.org; Wed, 20 Aug 2008 09:51:24 -0400 Received: from wr-out-0506.google.com ([64.233.184.234]:35846) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KVo5s-0008Cj-5W for emacs-orgmode@gnu.org; Wed, 20 Aug 2008 09:51:24 -0400 Received: by wr-out-0506.google.com with SMTP id c30so416988wra.14 for ; Wed, 20 Aug 2008 06:51:22 -0700 (PDT) In-Reply-To: <48ABC2BB.2080907@unibas.ch> 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 In case some are wondering, Jörg is referring to a message I sent to him about updating org-mode in Carbon Emacs. I meant to send the message to this list, but I failed to hit "reply all" when I sent it and I didn't check its address before I sent it. Anyway, in case others are interested, the message is below. --------- Hi Jörg, I can't answer your question, but I've recently updated org-mode in Carbon emacs. Here is what I did. 1. After decompressing org-6.06b.tar.gz, open the Makefile file, using Emacs of course ;), in the org-6.06b folder. 2. You will see the following text ##---------------------------------------------------------------------- ## YOU MUST EDIT THE FOLLOWING LINES ##---------------------------------------------------------------------- First, you must provide the name of your Emacs binary. Mine is: # Name of your emacs binary EMACS=/Applications/Emacs/22.2/Emacs.app/Contents/MacOS/Emacs The /Applications/Emacs/22.2/ part is my quirky path to Emacs.app. From what you've written, it appears that your path is straightforward as follows: # Name of your emacs binary EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs Next, you must give the path to of Emacs.app. Mine is: # Where local software is found prefix=/Applications/Emacs/22.2 Yours should be: # Where local software is found prefix=/Applications If you accidentally put a "/" at the end (as I did once), the installation will fail. Finally, put in the paths for the local lisp files and the info files as follows: # Where local lisp files go. lispdir = $(prefix)/Emacs.app/Contents/Resources/lisp/textmodes # Where info files go. infodir = $(prefix)/Emacs.app/Contents/Resources/info Don't forget to C-x C-s to save the changes. 3. Now, open a terminal and cd to the org-6.06b directory that contains the Makefile you just edited. Run the following: $ make $ sudo make install $ sudo make install-info The installation is complete. To check this do "M-x org-version" in Emacs. You may have to restart Emacs first. Scott Randby ----- Jörg Hagmann wrote: > Hi Edward, hi Scott: > > Thanks for the answers. I did use checkboxes before, so C-c C-c and C-c > # were familiar. But it turned out that (properly!) updating to the > recent org-version corrected everything. I recently changed from 10.4 to > Leopard, it's possible that the problem existed since the switch---but I > don't know. > > Anyway: now I know how to update org-mode! Thanks, Scott. > Cheers, Jörg >