From: Alex Branham Date: Mon, 12 Feb 2018 19:28:20 +0000 (-0600) Subject: Silence byte compiler warning in auth-source-pass X-Git-Tag: emacs-27.0.90~4937 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=24cbb659541b13ad373082f6cf76df7cc5cc1f38;p=emacs.git Silence byte compiler warning in auth-source-pass * lisp/auth-source-pass.el (auth-source-pass-backend): Silence byte compiler warning by only passing a parameter to `auth-source-backend' in Emacs <= 25. --- diff --git a/lisp/auth-source-pass.el b/lisp/auth-source-pass.el index 461cba02dd4..ec0fe8c4320 100644 --- a/lisp/auth-source-pass.el +++ b/lisp/auth-source-pass.el @@ -81,7 +81,7 @@ See `auth-source-search' for details on SPEC." (defvar auth-source-pass-backend (auth-source-backend - (format "Password store") + (when (<= emacs-major-version 25) "password-store") :source "." ;; not used :type 'password-store :search-function #'auth-source-pass-search)