diff options
| author | Pierre Neidhardt <ambrevar@gmail.com> | 2017-12-07 22:02:46 +0100 |
|---|---|---|
| committer | Pierre Neidhardt <ambrevar@gmail.com> | 2017-12-07 22:02:46 +0100 |
| commit | 8633ddb97a80300088dd5cd3ee6379a49ebe9881 (patch) | |
| tree | 28631369b081eaedcaf7a36b18f91a96f381b765 | |
| parent | e1d71de24f4d642a3f959f6b2a71f5705dd8e87f (diff) | |
...And use declare-function instead
| -rw-r--r-- | evil-collection-company.el | 2 | ||||
| -rw-r--r-- | evil-collection-emms.el | 3 | ||||
| -rw-r--r-- | evil-collection-pdf.el | 4 |
3 files changed, 9 insertions, 0 deletions
diff --git a/evil-collection-company.el b/evil-collection-company.el index 2bec8ad..aad33de 100644 --- a/evil-collection-company.el +++ b/evil-collection-company.el @@ -30,6 +30,8 @@ (require 'company nil t) (require 'evil) +(declare-function company-tng-configure-default "company-tng") + (defgroup evil-collection-company nil "Evil bindings for `company-mode'." :group 'evil-collection) diff --git a/evil-collection-emms.el b/evil-collection-emms.el index 6de3fdf..9ccbf41 100644 --- a/evil-collection-emms.el +++ b/evil-collection-emms.el @@ -30,6 +30,9 @@ (require 'emms nil t) (require 'evil) +(declare-function emms-with-inhibit-read-only-t "emms") +(declare-function emms-playlist-mode-correct-previous-yank "emms-playlist-mode") + (defvar emms-browser-mode-map) (defvar emms-playlist-mode-map) diff --git a/evil-collection-pdf.el b/evil-collection-pdf.el index e3c7a87..056d436 100644 --- a/evil-collection-pdf.el +++ b/evil-collection-pdf.el @@ -30,6 +30,10 @@ (require 'evil) (require 'pdf-view nil t) +(declare-function pdf-view-last-page "pdf-view") +(declare-function pdf-view-first-page "pdf-view") +(declare-function pdf-view-goto-page "pdf-view") + (defun evil-collection-pdf-view-goto-page (&optional page) "`evil' wrapper around `pdf-view-last-page'." (interactive "P") |
