aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDamien Cassou2018-03-23 09:16:25 +0100
committerNicolas Petton2018-06-05 15:51:46 +0200
commita613326e67b568b0b7448331f99dc32a6932c8ad (patch)
tree362b7ec231593e274634b6080dab9557c21579e3 /lisp
parent7b2d4754a28bd1d03ff43defaa80282b452dcd50 (diff)
downloademacs-a613326e67b568b0b7448331f99dc32a6932c8ad.tar.gz
emacs-a613326e67b568b0b7448331f99dc32a6932c8ad.zip
Fix prefix messages of auth-source-pass debug messages
* lisp/auth-source-pass.el (auth-source-pass--do-debug): Fix message prefix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/auth-source-pass.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/auth-source-pass.el b/lisp/auth-source-pass.el
index c8722a55790..42c03447560 100644
--- a/lisp/auth-source-pass.el
+++ b/lisp/auth-source-pass.el
@@ -150,7 +150,7 @@ CONTENTS is the contents of a password-store formatted file."
150(defun auth-source-pass--do-debug (&rest msg) 150(defun auth-source-pass--do-debug (&rest msg)
151 "Call `auth-source-do-debug` with MSG and a prefix." 151 "Call `auth-source-do-debug` with MSG and a prefix."
152 (apply #'auth-source-do-debug 152 (apply #'auth-source-do-debug
153 (cons (concat "auth-source-password-store: " (car msg)) 153 (cons (concat "auth-source-pass: " (car msg))
154 (cdr msg)))) 154 (cdr msg))))
155 155
156(defun auth-source-pass--select-one-entry (entries user) 156(defun auth-source-pass--select-one-entry (entries user)