From mboxrd@z Thu Jan 1 00:00:00 1970 From: JBash Subject: remember integration problem with 6.06 Date: Wed, 10 Sep 2008 14:26:22 -0400 Message-ID: <407c66ac0809101126p8989024r8da5989a182c06b9@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0552894583==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KdUOb-0002W8-EH for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 14:26:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KdUOa-0002Vl-RT for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 14:26:28 -0400 Received: from [199.232.76.173] (port=38551 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdUOa-0002Vi-GC for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 14:26:28 -0400 Received: from wr-out-0506.google.com ([64.233.184.229]:59842) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KdUOY-0004eB-JK for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 14:26:28 -0400 Received: by wr-out-0506.google.com with SMTP id c30so2629103wra.14 for ; Wed, 10 Sep 2008 11:26:23 -0700 (PDT) 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 --===============0552894583== Content-Type: multipart/alternative; boundary="----=_Part_21653_17320436.1221071182466" ------=_Part_21653_17320436.1221071182466 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, I've recently started using the version of org from the git repository, and I somehow have broken the remember-mode integration with org. I was previously using 5.22a, with linux, emacs 22, and remember 1.9. When I type 'Ctrl-C r', which used to bring up the remember template, I now get: run-hook-with-args-until-success: Autoloading failed to define function org-remember-annotation Any ideas what I've done to break the integration? Any help will be appreciated. Thanks, Jerry Here are the pertinent lines in my .emacs: ;;(add-to-list 'load-path "~/emacs/lisp/org-5.22a") (add-to-list 'load-path "~/emacs/org-mode/org-mode.git/lisp") (add-to-list 'load-path "~/emacs/lisp/remember-1.9") ;; (require 'remember) ;; This didn't work see error (require 'remember-autoloads) ;; This doesn't work either - see error ;; (org-remember-insinuate) ;; This didn't load (setq org-directory "~/org-gtd/") (setq org-default-notes-file (concat org-directory "org-gtd.org")) ;;(global-set-key (kbd "C-c r") 'remember) (setq org-remember-templates '(("Tasks" ?t "* TODO %?\n %i\n %a" "~/org-gtd/org-gtd01.org" "Tasks") ("Home" ?h "* TODO %?\n %i\n %a" "~/org-gtd/home_gtd1.org" "Tasks") ;; ("WCC" ?w "* TODO %?\n %i\n %a" "~/org-gtd/wcc_gtd01.org" "Tasks") ("Appointments" ?a "* Appointment: %?\n%^T\n%i\n %a" "~/org-gtd/ org-gtd01.org" "Appointments"))) (setq remember-annotation-functions '(org-remember-annotation)) (setq remember-handler-functions '(org-remember-handler)) (eval-after-load 'remember '(add-hook 'remember-mode-hook 'org-remember-apply-template)) ;; (add-hook 'remember-mode-hook 'org-remember-apply-template) ;; Same error with this uncommented (global-set-key (kbd "C-c r") 'remember) (require 'org) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (global-set-key (kbd "C-c a") 'org-agenda) (setq org-todo-keywords '("TODO" "STARTED" "WAITING" "DONE")) (setq org-agenda-include-diary t) (setq org-agenda-include-all-todo t) ------=_Part_21653_17320436.1221071182466 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hello,

I've recently started using the version of org from the git repository, and I somehow have broken the remember-mode integration with org.  I was previously using 5.22a, with linux, emacs 22, and remember 1.9.

When I type 'Ctrl-C r', which used to bring up the remember template, I now get:

run-hook-with-args-until-success: Autoloading failed to define function org-remember-annotation

Any ideas what I've done to break the integration?  Any help will be appreciated.

Thanks,
Jerry

Here are the pertinent lines in my .emacs:

;;(add-to-list 'load-path "~/emacs/lisp/org-5.22a")                      
(add-to-list 'load-path "~/emacs/org-mode/org-mode.git/lisp")
(add-to-list 'load-path "~/emacs/lisp/remember-1.9")

;; (require 'remember)  ;; This didn't work see error
(require 'remember-autoloads)  ;; This doesn't work either - see error
;; (org-remember-insinuate) ;; This didn't load
(setq org-directory "~/org-gtd/")
(setq org-default-notes-file (concat org-directory "org-gtd.org"))
;;(global-set-key (kbd "C-c r") 'remember)

(setq org-remember-templates
   '(("Tasks" ?t "* TODO %?\n  %i\n  %a" "~/org-gtd/org-gtd01.org" "Tasks")
     ("Home" ?h "* TODO %?\n  %i\n  %a" "~/org-gtd/home_gtd1.org" "Tasks")
;;     ("WCC" ?w "* TODO %?\n  %i\n  %a" "~/org-gtd/wcc_gtd01.org" "Tasks")
     ("Appointments" ?a "* Appointment: %?\n%^T\n%i\n  %a" "~/org-gtd/org-gtd01.org" "Appointments")))
(setq remember-annotation-functions '(org-remember-annotation))
(setq remember-handler-functions '(org-remember-handler))
(eval-after-load 'remember  '(add-hook 'remember-mode-hook 'org-remember-apply-template))
;; (add-hook 'remember-mode-hook 'org-remember-apply-template)  ;; Same error with this uncommented
(global-set-key (kbd "C-c r") 'remember)

(require 'org)
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(global-set-key (kbd "C-c a") 'org-agenda)
(setq org-todo-keywords '("TODO" "STARTED" "WAITING" "DONE"))
(setq org-agenda-include-diary t)
(setq org-agenda-include-all-todo t) 
------=_Part_21653_17320436.1221071182466-- --===============0552894583== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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 --===============0552894583==--