diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-12 01:32:15 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-12 01:32:15 -0500 |
commit | e9629834af00597966ec8e95656369a7d4bc61a0 (patch) | |
tree | 1dea51dec16b8286164a6620d315fbfb04222cf4 /lisp | |
parent | 01cfd8227a29f5be9b9956c55ef464f5bdb7eafd (diff) | |
download | emacs.d-e9629834af00597966ec8e95656369a7d4bc61a0.tar.gz |
Require org-contacts instead of autoloading
Otherwise, completion is not available for in message mode.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-orgcontacts.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/init-orgcontacts.el b/lisp/init-orgcontacts.el index 4198b35..a78b9bf 100644 --- a/lisp/init-orgcontacts.el +++ b/lisp/init-orgcontacts.el @@ -1,8 +1,5 @@ (add-to-list 'load-path "~/src/emacs/org-mode/contrib/lisp" t) - -(autoload 'org-contacts-template-name "org-contacts" - "Try to return the contact name for a template. -If not found return RETURN-VALUE or something that would ask the user.") +(require 'org-contacts) (setq org-contacts-files '("~/notes/contacts.org")) |