diff options
| author | Clément Pit--Claudel | 2017-05-05 12:08:54 -0400 |
|---|---|---|
| committer | Clément Pit--Claudel | 2017-05-05 12:10:58 -0400 |
| commit | 574b0992e3cb4b7a4ad88400b9a5ab0198a96ca5 (patch) | |
| tree | 7ffa6eabd60c907e674fd21261a83d721ebd72a7 /phox | |
| parent | 409a116b00a2208e0fbc528981176d29c7966db6 (diff) | |
Change (eval-when (compile) ...) to (eval-when-compile ...)
This fixes a bunch of compilation warnings
Diffstat (limited to 'phox')
| -rw-r--r-- | phox/phox-extraction.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phox/phox-extraction.el b/phox/phox-extraction.el index 87ea70f6..84937f36 100644 --- a/phox/phox-extraction.el +++ b/phox/phox-extraction.el @@ -9,7 +9,7 @@ (require 'cl) -(eval-when (compile) +(eval-when-compile (defvar phox-prog-name nil)) (declare-function proof-shell-invisible-command "proof-shell" (str)) |
