mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 20:07:36 +00:00
Style fixes for auth-source.el.
* auth-source.el (auth-source-token-passphrase-callback-function): Reindent. (epg-context-operation): Remove unnecessary autoload.
This commit is contained in:
parent
8a20ca4cb0
commit
7f6d634ac2
2 changed files with 24 additions and 19 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2011-07-02 Daiki Ueno <ueno@unixuser.org>
|
||||
|
||||
* auth-source.el (auth-source-token-passphrase-callback-function):
|
||||
Reindent.
|
||||
(epg-context-operation): Remove unnecessary autoload.
|
||||
|
||||
2011-07-02 Andrew Cohen <cohen@andy.bu.edu>
|
||||
|
||||
* nnir.el (nnir-run-imap): Allow halting a search when an article is
|
||||
|
|
|
|||
|
|
@ -74,7 +74,6 @@
|
|||
(autoload 'plstore-save "plstore")
|
||||
(autoload 'plstore-get-file "plstore")
|
||||
|
||||
(autoload 'epg-context-operation "epg")
|
||||
(autoload 'epg-make-context "epg")
|
||||
(autoload 'epg-context-set-passphrase-callback "epg")
|
||||
(autoload 'epg-decrypt-string "epg")
|
||||
|
|
@ -1005,24 +1004,24 @@ Note that the MAX parameter is used so we can exit the parse early."
|
|||
(defvar auth-source-passphrase-alist nil)
|
||||
|
||||
(defun auth-source-token-passphrase-callback-function (context key-id file)
|
||||
(let* ((file (file-truename file))
|
||||
(entry (assoc file auth-source-passphrase-alist))
|
||||
passphrase)
|
||||
;; return the saved passphrase, calling a function if needed
|
||||
(or (copy-sequence (if (functionp (cdr entry))
|
||||
(funcall (cdr entry))
|
||||
(cdr entry)))
|
||||
(progn
|
||||
(unless entry
|
||||
(setq entry (list file))
|
||||
(push entry auth-source-passphrase-alist))
|
||||
(setq passphrase
|
||||
(read-passwd
|
||||
(format "Passphrase for %s tokens: " file)
|
||||
t))
|
||||
(setcdr entry (lexical-let ((p (copy-sequence passphrase)))
|
||||
(lambda () p)))
|
||||
passphrase))))
|
||||
(let* ((file (file-truename file))
|
||||
(entry (assoc file auth-source-passphrase-alist))
|
||||
passphrase)
|
||||
;; return the saved passphrase, calling a function if needed
|
||||
(or (copy-sequence (if (functionp (cdr entry))
|
||||
(funcall (cdr entry))
|
||||
(cdr entry)))
|
||||
(progn
|
||||
(unless entry
|
||||
(setq entry (list file))
|
||||
(push entry auth-source-passphrase-alist))
|
||||
(setq passphrase
|
||||
(read-passwd
|
||||
(format "Passphrase for %s tokens: " file)
|
||||
t))
|
||||
(setcdr entry (lexical-let ((p (copy-sequence passphrase)))
|
||||
(lambda () p)))
|
||||
passphrase))))
|
||||
|
||||
;; (auth-source-epa-extract-gpg-token "gpg:LS0tLS1CRUdJTiBQR1AgTUVTU0FHRS0tLS0tClZlcnNpb246IEdudVBHIHYxLjQuMTEgKEdOVS9MaW51eCkKCmpBMEVBd01DT25qMjB1ak9rZnRneVI3K21iNm9aZWhuLzRad3cySkdlbnVaKzRpeEswWDY5di9icDI1U1dsQT0KPS9yc2wKLS0tLS1FTkQgUEdQIE1FU1NBR0UtLS0tLQo=" "~/.netrc")
|
||||
(defun auth-source-epa-extract-gpg-token (secret file)
|
||||
|
|
|
|||
Loading…
Reference in a new issue