From 574b0992e3cb4b7a4ad88400b9a5ab0198a96ca5 Mon Sep 17 00:00:00 2001 From: Clément Pit--Claudel Date: Fri, 5 May 2017 12:08:54 -0400 Subject: Change (eval-when (compile) ...) to (eval-when-compile ...) This fixes a bunch of compilation warnings --- hol-light/hol-light.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hol-light') 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") -- cgit v1.2.3