From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jurgen Defurne Subject: Re: Problem with remember and org-mode 6.01d Date: Mon, 21 Apr 2008 21:19:18 +0200 Message-ID: <20080421211918.3fecaf8a@caesar.gallia> References: <20080421205733.51fff4c1@caesar.gallia> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jo1YU-0001vX-Gw for emacs-orgmode@gnu.org; Mon, 21 Apr 2008 15:19:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jo1YP-0001ug-6M for emacs-orgmode@gnu.org; Mon, 21 Apr 2008 15:19:58 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jo1YP-0001ud-0j for emacs-orgmode@gnu.org; Mon, 21 Apr 2008 15:19:53 -0400 Received: from monty.telenet-ops.be ([195.130.132.56]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Jo1YO-0006Q5-As for emacs-orgmode@gnu.org; Mon, 21 Apr 2008 15:19:53 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by monty.telenet-ops.be (Postfix) with SMTP id E624454042 for ; Mon, 21 Apr 2008 21:19:19 +0200 (CEST) Received: from caesar.gallia (78-22-30-13.access.telenet.be [78.22.30.13]) by monty.telenet-ops.be (Postfix) with ESMTP id D3D0654006 for ; Mon, 21 Apr 2008 21:19:19 +0200 (CEST) Received: from caesar.gallia (caesar.gallia [192.168.2.1]) by caesar.gallia (Postfix) with ESMTP id 819E66E92E for ; Mon, 21 Apr 2008 21:19:19 +0200 (CEST) In-Reply-To: <20080421205733.51fff4c1@caesar.gallia> 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 On Mon, 21 Apr 2008 20:57:33 +0200 Jurgen Defurne wrote: > Hello, > > I am trying to upgrade to the newest org-mode, but I really need the remember functionality. > > I have two systems, one that acts as 'production' and one that acts as 'test'. On production I am still on the org-mode 5.23 + remember 1.9. I am now trying remember 2.0 (although I have tested after failure with 1.9) with org-mode 6.01d. I have setup the test system that it has the same emacs startup commands as the production system. > > When I try to enter a remember template, C-c r works, but upon selection of the template I get > > symbol's function definition is void : x-selection-value > > Does any one have a clue about this problem ? > > Regards, > > Jurgen > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode I just tried the same on a different, clean machine and I still get the same problem. This is the content of my .emacs file : (add-to-list 'load-path "/usr/share/emacs/site-lisp/remember") (add-to-list 'load-path "/usr/share/emacs/site-lisp/org") (require 'org-install) (require 'remember) (org-remember-insinuate) (setq org-directory "~/agenda") (setq org-default-notes-file (concat org-directory "/notes.org")) (define-key global-map "\C-cr" 'org-remember) (setq org-remember-templates '(("Todo" ?t "* TODO %?\n %i\n %a" "~/org/TODO.org" "Tasks") ("Journal" ?j "* %U %?\n\n %i\n %a" "~/org/JOURNAL.org") ("Idea" ?i "* %^{Title}\n %i\n %a" "~/org/JOURNAL.org" "New Ideas"))) Regards, Jurgen