"McKelvie" <[EMAIL PROTECTED]> writes:

> version 5.04 allows my to file quick notes away using remember. On
> upgrading to 5.08, when I try typing in my template hot key I get the
> error, Wrong type argument: stringp, nil. It works fine in 5.04.

Sounds like a problem I was having which came down to
org-remember-apply-template expecting remember's global `annotation'
variable to be non-nil.  I temporarily (and unartfully) fixed it with

,----
| (defadvice org-remember-apply-template
|   (around ajk/fix-org-remember-apply-template activate compile)
|   (with-no-warnings
|     (if annotation
|         ad-do-it
|       (let ((annotation ""))
|         ad-do-it))))
`----

-- 
Andrew J. Korty, Deputy Information Security Officer
Office of the Vice President for Information Technology and CIO
Indiana University


_______________________________________________
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

Reply via email to