diff options
author | yoctocell <public@yoctocell.xyz> | 2021-01-06 10:56:32 +0100 |
---|---|---|
committer | yoctocell <public@yoctocell.xyz> | 2021-01-06 10:56:32 +0100 |
commit | f1b8148dcc3980f765adc4f096bf69ca0e98ec7e (patch) | |
tree | 2cf3ec6b2d6b14f66e825b43b47f8516f2dd2a18 /git-email.el | |
parent | 2967fd0108c5ff79e0d583dda3fa5ad8d702cb7f (diff) |
Get rid of compile warnings
* git-email.el (dired-get-filename):
(dired-map-over-marks):
(ibuffer-get-marked-buffers):
(vc-dir-marked-files):
(vc-dir-current-file):
Diffstat (limited to 'git-email.el')
-rw-r--r-- | git-email.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/git-email.el b/git-email.el index e88e2f5..3a3049a 100644 --- a/git-email.el +++ b/git-email.el @@ -91,6 +91,13 @@ in you git config. If the variable is not set, the 'to' address will be empty." :type '(string) :group 'git-email) +;; Compile warnings +(declare-function dired-get-filename "dired.el") +(declare-function dired-map-over-marks "dired.el") +(declare-function ibuffer-get-marked-buffers "ibuffer.el") +(declare-function vc-dir-marked-files "vc-dir.el") +(declare-function vc-dir-current-file "vc-dir.el") + (defun git-email-send-all () "Send all unsent emails." (interactive) |