Without this patch (when I am _byte-compiling_ org-contacts.el), I am
getting error messages like this (when attempting address completion via
`completion-at-point' and `org-contacts-message-complete-function'):
Symbol's function definition is void: remove-duplicates
Symbol's function definition is void: some
With this patch, it seems to be working as expected.
---
Disclaimer: I'm no Elisp expert. Maybe this should be solved
differently.
contrib/lisp/org-contacts.el | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el
index ab44a7b..ac5ff6d 100644
--- a/contrib/lisp/org-contacts.el
+++ b/contrib/lisp/org-contacts.el
@@ -36,10 +36,8 @@
;;
;;; Code:
-(eval-when-compile
- (require 'cl))
-
(eval-and-compile
+ (require 'cl)
(require 'org))
(require 'gnus-util)
(require 'gnus-art)
--
1.8.2.rc1