From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rohan Nicholls Subject: Re: Re: remember integration problem with 6.06 Date: Fri, 19 Mar 2010 22:41:58 +0100 Message-ID: References: <407c66ac0809101126p8989024r8da5989a182c06b9@mail.gmail.com> <87prnbu6pb.fsf@cantor.griswold.home> <407c66ac0809110805g6518e70cp3e4ef69056d9ba0e@mail.gmail.com> <2B434AE3-A1B4-49CC-BF01-ED4DA492BF4C@gmail.com> Reply-To: rohan.nicholls@gmail.com Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NsjxE-0000dp-H6 for emacs-orgmode@gnu.org; Fri, 19 Mar 2010 17:42:04 -0400 Received: from [140.186.70.92] (port=43965 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NsjxC-0000dh-BD for emacs-orgmode@gnu.org; Fri, 19 Mar 2010 17:42:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NsjxB-0000bH-3w for emacs-orgmode@gnu.org; Fri, 19 Mar 2010 17:42:02 -0400 Received: from mail-bw0-f172.google.com ([209.85.218.172]:50054) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NsjxA-0000b1-VH for emacs-orgmode@gnu.org; Fri, 19 Mar 2010 17:42:01 -0400 Received: by bwz20 with SMTP id 20so411840bwz.6 for ; Fri, 19 Mar 2010 14:41:58 -0700 (PDT) In-Reply-To: <2B434AE3-A1B4-49CC-BF01-ED4DA492BF4C@gmail.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: Carsten Dominik Cc: Org Mode List Brilliant, thanks. On Fri, Mar 19, 2010 at 6:34 PM, Carsten Dominik wrote: > Hi Rohan, > > if you are getting your org distribution through git, then > you need to make at least org-install.el like this. > > make autoloads > > Otherwise, your (require 'org-install) might pick the empty > org-install.el that comes with Emacs. That must be the problem. I started loading things manually, and it was like the org-remember library had not been loaded. When I executed load-library on org-remember everything then worked. I will recompile everything. > You can also type "make" to compile all lisp files, and this > will *also* produce lisp/org-install.el > > If you do M-x find-library RET org-install RET, you will know which > one you are currently loading, and if org-remember-annotation is in > there. On my linux system I had done the find-library thing, and noticed that it was loading the system org. Looking at the load-path I noticed that all the system lisp files were at the front of the load-path with add-to-list throwing things on the back, which is new and unexpected. I fixed this with a (setq load-path (reverse load-path)), and then had to unload and reload org-mode, but this was a seriously hacky way to do things. I have not restarted my emacs lately on linux, but will give it a whirl after compiling, and see if that helps. > HTH I am pretty sure it has. :) Thanks, Rohan