aboutsummaryrefslogtreecommitdiffhomepage
path: root/hol-light
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2017-05-05 12:08:54 -0400
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2017-05-05 12:10:58 -0400
commit574b0992e3cb4b7a4ad88400b9a5ab0198a96ca5 (patch)
tree7ffa6eabd60c907e674fd21261a83d721ebd72a7 /hol-light
parent409a116b00a2208e0fbc528981176d29c7966db6 (diff)
Change (eval-when (compile) ...) to (eval-when-compile ...)
This fixes a bunch of compilation warnings
Diffstat (limited to 'hol-light')
-rw-r--r--hol-light/hol-light.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/hol-light/hol-light.el b/hol-light/hol-light.el
index 85d10607..467453ed 100644
--- a/hol-light/hol-light.el
+++ b/hol-light/hol-light.el
@@ -16,9 +16,9 @@
(or (proof-try-require 'caml-font) ; use OCaml Emacs mode syntax
(defvar caml-font-lock-keywords nil)) ;
-(eval-when (compile)
- (require 'proof-tree)
- (defvar caml-font-lock-keywords nil))
+(eval-when-compile
+ (require 'proof-tree)
+ (defvar caml-font-lock-keywords nil))
(defcustom hol-light-home
(or (getenv "HOLLIGHT_HOME")