From: Stefan Monnier Date: Wed, 24 Mar 2021 17:45:13 +0000 (-0400) Subject: * lisp/auth-source-pass.el (auth-source): Silence spurious warning X-Git-Tag: emacs-28.0.90~3151 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a5617bccf7d77b24c6f431e2c97496c440b06fe2;p=emacs.git * lisp/auth-source-pass.el (auth-source): Silence spurious warning --- diff --git a/lisp/auth-source-pass.el b/lisp/auth-source-pass.el index bd3070dcfe1..a7b959c47fd 100644 --- a/lisp/auth-source-pass.el +++ b/lisp/auth-source-pass.el @@ -33,10 +33,12 @@ ;;; 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."