branch: elpa/helm
commit 8a22cfa4b711b8d634741d17c486660a9aaf2a14
Author: Stefan Monnier <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Prefix unused arguments with _
---
 helm-epa.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/helm-epa.el b/helm-epa.el
index 49c55278ab..bc3968a505 100644
--- a/helm-epa.el
+++ b/helm-epa.el
@@ -170,7 +170,7 @@
        (signal (car error) (cdr error))))
     (message "Deleting gpg keys done")))
   
-(defun helm-epa-encrypt-file (candidate)
+(defun helm-epa-encrypt-file (_candidate)
   "Select a file to encrypt with key CANDIDATE."
   (let* ((file (helm-read-file-name "Encrypt file: "))
          (cands (helm-marked-candidates))
@@ -216,7 +216,7 @@
       (epa-sign-region start end candidate mode))
     (message "Mail signed with key `%s %s'" key id)))
 
-(defun helm-epa-mail-encrypt (candidate)
+(defun helm-epa-mail-encrypt (_candidate)
   "Encrypt email with key CANDIDATE."
   (let ((cands (helm-marked-candidates))
         start end)

Reply via email to