diff options
Diffstat (limited to 'lisp/auth-source-pass.el')
-rw-r--r-- | lisp/auth-source-pass.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/auth-source-pass.el b/lisp/auth-source-pass.el index 39db1a710bd..a7b959c47fd 100644 --- a/lisp/auth-source-pass.el +++ b/lisp/auth-source-pass.el @@ -27,16 +27,18 @@ ;;; Commentary: -;; Integrates password-store (http://passwordstore.org/) within +;; Integrates password-store (https://passwordstore.org/) within ;; auth-source. ;;; Code: (require 'seq) -(eval-when-compile (require 'subr-x)) (require 'cl-lib) (require 'auth-source) (require 'url-parse) +;; Use `eval-when-compile' after the other `require's to avoid spurious +;; "might not be defined at runtime" warnings. +(eval-when-compile (require 'subr-x)) (defgroup auth-source-pass nil "password-store integration within auth-source." @@ -123,7 +125,7 @@ ENTRY is the name of a password-store entry. The key used to retrieve the password is the symbol `secret'. The convention used as the format for a password-store file is -the following (see http://www.passwordstore.org/#organization): +the following (see https://www.passwordstore.org/#organization): secret key1: value1 |