aboutsummaryrefslogtreecommitdiffhomepage
path: root/easycrypt/easycrypt.el
diff options
context:
space:
mode:
Diffstat (limited to 'easycrypt/easycrypt.el')
-rw-r--r--easycrypt/easycrypt.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/easycrypt/easycrypt.el b/easycrypt/easycrypt.el
index e9b40358..621805e7 100644
--- a/easycrypt/easycrypt.el
+++ b/easycrypt/easycrypt.el
@@ -10,6 +10,7 @@
;;; Commentary:
;;
+(require 'cl-lib) ;cl-every
(require 'proof)
(require 'easycrypt-syntax)
(require 'easycrypt-hooks)
@@ -24,7 +25,7 @@
(defun easycrypt-load-path-safep (path)
(and
(listp path)
- (every (lambda (entry) (stringp entry)) path)))
+ (cl-every #'stringp path)))
;; --------------------------------------------------------------------
(defcustom easycrypt-prog-name "easycrypt"