diff options
| author | David Aspinall | 2011-08-24 08:40:48 +0000 |
|---|---|---|
| committer | David Aspinall | 2011-08-24 08:40:48 +0000 |
| commit | b46538af8e1804401b8a810d1f3c9bbb95e203fe (patch) | |
| tree | 6c36719ff3e8dd85746e3802d6944c027950940c | |
| parent | 828a8002fbfbfec96b64b4db317d98af04b24007 (diff) | |
eval-when-compile -> eval-when (compile) to avoid defvar coq-prog-name
overriding setting in coq.el
| -rw-r--r-- | coq/coq-local-vars.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coq/coq-local-vars.el b/coq/coq-local-vars.el index 95d9c783..bd57ae0f 100644 --- a/coq/coq-local-vars.el +++ b/coq/coq-local-vars.el @@ -11,7 +11,8 @@ (require 'local-vars-list) ; in lib directory -(eval-when-compile +(require 'cl) +(eval-when (compile) (defvar coq-prog-name nil) (defvar coq-load-path nil)) |
