emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/with-editor 236c158 127/140: Require subr-x for when-let


From: Jonas Bernoulli
Subject: [nongnu] elpa/with-editor 236c158 127/140: Require subr-x for when-let
Date: Fri, 6 Aug 2021 12:51:34 -0400 (EDT)

branch: elpa/with-editor
commit 236c1586c3df5e0e53badf6ff6f997a6bfd31667
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Require subr-x for when-let
    
    Closes #83.
---
 with-editor.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/with-editor.el b/with-editor.el
index 4d4df6b..c59db8b 100644
--- a/with-editor.el
+++ b/with-editor.el
@@ -81,8 +81,9 @@
 ;;; Code:
 
 (require 'cl-lib)
-;; `pcase-dolist' is not autoloaded on Emacs 24.
-(eval-when-compile (require 'pcase))
+(eval-when-compile
+  (require 'pcase) ; `pcase-dolist' is not autoloaded on Emacs 24.
+  (require 'subr-x))
 (require 'server)
 (require 'shell)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]