aboutsummaryrefslogtreecommitdiffhomepage
path: root/easycrypt/easycrypt.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2018-12-14 15:44:32 +0100
committerGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2018-12-14 15:44:32 +0100
commited4ffd4a653ae792aefeacbb0daa967fd4cb2524 (patch)
tree60a407c7f8ee7f2eb7a0dfd21230f47b1295d6b1 /easycrypt/easycrypt.el
parentbfcb1a442b225394edc5e61ff8b3216e8f0efe83 (diff)
parent632a3d7f9ded16faaf58e1c0769bcd4f7c8193e3 (diff)
Merge branch 'master' of github.com:ProofGeneral/PG
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"