[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org-contacts 23af13f11a 049/154: contrib/lisp/org-conta
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org-contacts 23af13f11a 049/154: contrib/lisp/org-contacts.el: Silence byte-compiler |
Date: |
Fri, 9 Sep 2022 15:58:25 -0400 (EDT) |
branch: externals/org-contacts
commit 23af13f11a9b1763d645244c75252405b535bc97
Author: Grégoire Jadi <gregoire.jadi@gmail.com>
Commit: Grégoire Jadi <gregoire.jadi@gmail.com>
contrib/lisp/org-contacts.el: Silence byte-compiler
---
org-contacts.el | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
diff --git a/org-contacts.el b/org-contacts.el
index 0c5a9cf6e0..e78b9dade6 100644
--- a/org-contacts.el
+++ b/org-contacts.el
@@ -39,8 +39,7 @@
(eval-when-compile
(require 'cl))
-(eval-and-compile
- (require 'org))
+(require 'org)
(require 'gnus-util)
(require 'gnus-art)
(require 'mail-utils)
@@ -141,9 +140,18 @@ This overrides `org-email-link-description-format' if set."
:type 'boolean)
;; Decalre external functions and variables
-(declare-function wl-summary-message-number "ext:wl-summary" ())
+(declare-function org-reverse-string "org")
+(declare-function org-install-letbind "org-exp")
+(declare-function diary-ordinal-suffix "ext:diary-lib")
+(declare-function wl-summary-message-number "ext:wl-summary")
(declare-function wl-address-header-extract-address "ext:wl-address")
(declare-function wl-address-header-extract-realname "ext:wl-address")
+(declare-function erc-buffer-list "ext:erc")
+(declare-function erc-get-channel-user-list "ext:erc")
+(declare-function google-maps-static-show "ext:google-maps-static")
+(declare-function elmo-message-field "ext:elmo-pipe")
+(declare-function std11-narrow-to-header "ext:std11")
+(declare-function std11-fetch-field "ext:std11")
(defvar org-contacts-keymap
(let ((map (make-sparse-keymap)))
@@ -779,11 +787,10 @@ address."
(defun erc-nicknames-list ()
"Return all nicknames of all ERC buffers."
- (if (fboundp 'erc-buffer-list)
- (loop for buffer in (erc-buffer-list)
- nconc (with-current-buffer buffer
- (loop for user-entry in (mapcar 'car
(erc-get-channel-user-list))
- collect (elt user-entry 1))))))
+ (loop for buffer in (erc-buffer-list)
+ nconc (with-current-buffer buffer
+ (loop for user-entry in (mapcar 'car
(erc-get-channel-user-list))
+ collect (elt user-entry 1)))))
(add-to-list 'org-property-set-functions-alist
`(,org-contacts-nickname-property .
org-contacts-completing-read-nickname))
- [elpa] externals/org-contacts b78a119f7a 005/154: Add docstring for `wl-get-from-header-content'., (continued)
- [elpa] externals/org-contacts b78a119f7a 005/154: Add docstring for `wl-get-from-header-content'., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 6c12101c8c 010/154: org-contacts: Use `with-current-buffer' instead of `save-excursion'+`with-current-buffer'., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts ef5cb2484b 016/154: Copyright year fixes for contrib/., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 7cae69fce6 011/154: org-contacts: Require cl on compilation., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts f71963d38a 036/154: Merge branch 'maint', ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts c0f4677a74 024/154: contrib/lisp/org-contacts.el: Require 'org-agenda., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 1313bd7bb0 040/154: org-contacts.el: Let the users decide if they want to use `org-contacts' to complete mail addresses, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 8e9ac123b1 034/154: Do not complete when it's not necessary, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts e516efacb6 037/154: Merge branch 'maint', ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 93f982e3ba 030/154: Merge branch 'maint', ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 23af13f11a 049/154: contrib/lisp/org-contacts.el: Silence byte-compiler,
ELPA Syncer <=
- [elpa] externals/org-contacts bc11ab4130 053/154: org-contacts.el (org-contacts-export-as-vcard): Don't use non-existent function `org-install-letbind', ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 9105e22251 066/154: contrib/lisp/org-contacts.el: Add a complex org-contacts template to the file header, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 4108493c9d 055/154: org-contacts.el , fix bugs about 'tel and 'note properties, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts d6824ec3c2 069/154: org-contacts: use `org-' prefixed variants of cl functions, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts fd0f42a1bc 075/154: Update copyright years again., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 5526110aac 018/154: Merge branch 'origin-maint', ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts d630e91dee 033/154: Add caching mecanism, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 680dc1f24d 039/154: org-contacts.el: Started to silent byte-compiler, ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts 3f1509bfa2 035/154: org-contacts: Fix Agenda format., ELPA Syncer, 2022/09/09
- [elpa] externals/org-contacts abbf3a9a25 041/154: org-contacts.el: Rename a function to follow emacs-lisp coding conventions, ELPA Syncer, 2022/09/09