diff options
| author | Clément Pit--Claudel | 2017-02-25 19:06:26 -0500 |
|---|---|---|
| committer | Clément Pit--Claudel | 2017-03-08 15:06:17 -0500 |
| commit | 33614d35a25b54c23171c360a61b913f0c1158ce (patch) | |
| tree | b01a2717d7a59088c9688582bafbc9ac21793498 /coq/coq-seq-compile.el | |
| parent | 70dfbc54d9a6b559dbfcfd6105a7e8c80d78d888 (diff) | |
Fix incorrect uses of defvar
It didn't really matter that these variables were defined and set to nil during
compilation, since we ran compilation in a clean Emacs in --batch mode; it does
matter now, however, since package.el compiles PG in the user's currently
running Emacs instance.
Diffstat (limited to 'coq/coq-seq-compile.el')
| -rw-r--r-- | coq/coq-seq-compile.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coq/coq-seq-compile.el b/coq/coq-seq-compile.el index a1b2d30a..5ecfbf4b 100644 --- a/coq/coq-seq-compile.el +++ b/coq/coq-seq-compile.el @@ -19,10 +19,10 @@ (require 'proof-compat)) (eval-when (compile) - (defvar queueitems nil) ; dynamic scope in p-s-extend-queue-hook - (defvar coq-compile-before-require nil) ; defpacustom - (defvar coq-compile-parallel-in-background nil) ; defpacustom - (defvar coq-confirm-external-compilation nil)); defpacustom + (defvar queueitems) ; dynamic scope in p-s-extend-queue-hook + (defvar coq-compile-before-require) ; defpacustom + (defvar coq-compile-parallel-in-background) ; defpacustom + (defvar coq-confirm-external-compilation)); defpacustom (require 'coq-compile-common) |
