From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Problem with org-remember Date: Mon, 19 Jan 2009 12:13:51 -0800 Message-ID: <4974DEFF.9060402@advantest-ard.com> Reply-To: m.elston@advantest-ard.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LP0VN-0006Fk-Tr for emacs-orgmode@gnu.org; Mon, 19 Jan 2009 15:13:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LP0VL-0006FY-HZ for emacs-orgmode@gnu.org; Mon, 19 Jan 2009 15:13:52 -0500 Received: from [199.232.76.173] (port=58953 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LP0VL-0006FV-C1 for emacs-orgmode@gnu.org; Mon, 19 Jan 2009 15:13:51 -0500 Received: from [192.84.20.196] (port=4525 helo=mailhub.ardeng.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LP0VK-0003cx-UP for emacs-orgmode@gnu.org; Mon, 19 Jan 2009 15:13:51 -0500 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: Org Mode List Hi, I am having trouble getting org-remember to work. I have (require 'org) with several other org related settings in my .emacs but when I try M-x org-remember on a TODO item (or anywhere else) I get: Debugger entered--Lisp error: (error "Autoloading failed to define function org-remember") signal(error ("Autoloading failed to define function org-remember")) error("%s" "Autoloading failed to define function org-remember") (condition-case act-on-choice (let (...) (setq icicle-candidate-action-fn nil) (funcall ... cmd-choice)) (quit (icicle-try-switch-buffer orig-buff) nil) (error (icicle-try-switch-buffer orig-buff) nil (error "%s" ...))) (let* ((orig-buff ...) (orig-window ...) (use-file-dialog nil) (last-command last-command) new-last-cmd (icicle-candidate-action-fn ...)) nil (condition-case act-on-choice (let ... ... ...) (quit ... nil) (error ... nil ...)) (setq this-command new-last-cmd)) icicle-execute-extended-command() call-interactively(icicle-execute-extended-command) If I don't load the icicle package I get roughly the same error: Debugger entered--Lisp error: (error "Autoloading failed to define function org-remember") execute-extended-command(nil) call-interactively(execute-extended-command) If I load-library org-remember then I can call the function without error but it doesn't populate the buffer with anything and if I enter some text and type C-cC-c I get an error about a nonexistent region. Any ideas? Emacs 22.3.1 Windows XP org-mode 6.17c Mark