branch: elpa/keycast
commit 3beccc47899f4f3581b2a8290559f46d49f4e15d
Author: Basil L. Contovounesios <[email protected]>
Commit: Basil L. Contovounesios <[email protected]>

    Load compile-time dependencies for older Emacsen
    
    The macros cl-incf, when-let, et al. only became autoloaded in Emacs
    27.
---
 keycast.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/keycast.el b/keycast.el
index 714c402e57..aacc5589e3 100644
--- a/keycast.el
+++ b/keycast.el
@@ -32,6 +32,10 @@
 
 (require 'format-spec)
 
+(eval-when-compile
+  (require 'cl-lib)
+  (require 'subr-x))
+
 ;;; Options
 
 (defgroup keycast nil

Reply via email to