diff options
author | Glenn Morris <rgm@gnu.org> | 2018-07-20 10:00:32 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-07-20 10:00:32 -0700 |
commit | 6ee00324619673b402dadb3c28e791b79527868f (patch) | |
tree | 57070a6bb9dcf0620107f113f67551fe622c7385 /lisp/auth-source.el | |
parent | 144bcc0132e61cc932348312720d592764022844 (diff) | |
parent | 3e722980df9d4a705394c843a2a5e051e9c682b6 (diff) | |
download | emacs-6ee00324619673b402dadb3c28e791b79527868f.tar.gz emacs-6ee00324619673b402dadb3c28e791b79527868f.tar.bz2 emacs-6ee00324619673b402dadb3c28e791b79527868f.zip |
Merge from origin/emacs-26
3e72298 Improve documentation of 'pcase-defmacro rx'
ba9b9bb Fix TTY colors breakage by 'clear-face-cache'
f56ad42 * admin/MAINTAINERS: Add files maintained by me (Michael Albi...
7a258fa Adapt shadowfile.el for Tramp (Bug#4526, Bug#4846)
cb50077 Fix auth-source-delete (Bug#26184)
a4767a6 Avoid assertion violations in gnutls.c
90110f8 Don't use a literal "C-u" in ispell.el help message text
f4e7f6d Improve documentation of 'seqp'
ed13639 Clarify usage and dependencies between several Flyspell features
Conflicts:
etc/NEWS
test/lisp/auth-source-tests.el
Diffstat (limited to 'lisp/auth-source.el')
-rw-r--r-- | lisp/auth-source.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/auth-source.el b/lisp/auth-source.el index abff0def95f..261e9726131 100644 --- a/lisp/auth-source.el +++ b/lisp/auth-source.el @@ -779,7 +779,7 @@ Calls `auth-source-search' with the :delete property in SPEC set to t. The backend may not actually delete the entries. Returns the deleted entries." - (auth-source-search (plist-put spec :delete t))) + (apply #'auth-source-search (plist-put spec :delete t))) (defun auth-source-search-collection (collection value) "Returns t is VALUE is t or COLLECTION is t or COLLECTION contains VALUE." |