[Orgmode] Re: Problem with 7.02 - org-capture-templates not set from init file

2010-11-02 Thread Jeffrey DeLeo
One thing I noticed that changed in org-install.el from 7.01h to 7.02 - in 7.02 is being explicitly defined in org-install.el as nil, that wasn't happening before. 7.01h: ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here ;; org-capture) org-capture

Re: [Orgmode] Re: Problem with 7.02 - org-capture-templates not set from init file

2010-11-02 Thread Carsten Dominik
On Nov 2, 2010, at 3:29 PM, Jeffrey DeLeo wrote: One thing I noticed that changed in org-install.el from 7.01h to 7.02 - in 7.02 is being explicitly defined in org-install.el as nil, that wasn't happening before. That is right. However, when org-capture gets loaded, the value will

[Orgmode] Re: Problem with 7.02 - org-capture-templates not set from init file

2010-11-02 Thread Jeffrey DeLeo
OK, I found the problem. In my emacs init file, further down I had: (require 'gnus-load) ;; for dev gnus (require 'message) (require 'bbdb) (require 'org-install) (require 'org-icalendar) (require 'org-mobile) ... Removing these requires results in working org and not stomping on

[Orgmode] Re: Problem with 7.02 - org-capture-templates not set from init file

2010-11-02 Thread Anupam Sengupta
Jeffrey DeLeo jeff.de...@rigpa.org writes: OK, I found the problem. In my emacs init file, further down I had: (require 'gnus-load) ;; for dev gnus (require 'message) (require 'bbdb) (require 'org-install) (require 'org-icalendar) (require 'org-mobile) ... Removing