aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq
diff options
context:
space:
mode:
authorGravatar Hendrik Tews <hendrik@askra.de>2012-11-14 09:09:32 +0000
committerGravatar Hendrik Tews <hendrik@askra.de>2012-11-14 09:09:32 +0000
commit78a60e73ff0398392d55be24f60446c58808509c (patch)
tree5f2e335e1b6c64c0ec645025f4c882f5c8341b6b /coq
parentd4dcfa5108f3a66285420a71a0da76503ae0b584 (diff)
update documentation
Diffstat (limited to 'coq')
-rw-r--r--coq/coq-compile-common.el8
-rw-r--r--coq/coq-par-compile.el6
2 files changed, 7 insertions, 7 deletions
diff --git a/coq/coq-compile-common.el b/coq/coq-compile-common.el
index 514c4eb3..fea396f7 100644
--- a/coq/coq-compile-common.el
+++ b/coq/coq-compile-common.el
@@ -149,7 +149,7 @@ the background. The maximal number of parallel compilation jobs
is set with `coq-max-background-compilation-jobs'.
This option can be set/reset via menu
-`Coq -> Settings -> Compile Parallel In Background."
+`Coq -> Settings -> Compile Parallel In Background'."
:type 'boolean
:safe 'booleanp
:group 'coq-auto-compile
@@ -158,6 +158,12 @@ This option can be set/reset via menu
;; defpacustom fails to call :eval during inititialization, see trac #456
(coq-switch-compilation-method)
+(defcustom coq-max-background-compilation-jobs 1
+ "Maximal number of parallel jobs, if parallel compilation is enabled."
+ :type 'integer
+ :safe (lambda (v) (and (integerp v) (> v 0)))
+ :group 'coq-auto-compile)
+
(defcustom coq-compile-command ""
"External compilation command. If empty ProofGeneral compiles itself.
If unset (the empty string) ProofGeneral computes the dependencies of
diff --git a/coq/coq-par-compile.el b/coq/coq-par-compile.el
index 2d08c218..109b2c2d 100644
--- a/coq/coq-par-compile.el
+++ b/coq/coq-par-compile.el
@@ -221,12 +221,6 @@
;;; Variables
-(defcustom coq-max-background-compilation-jobs 1
- "Maximal number of background compilation jobs."
- :type 'integer
- :safe (lambda (v) (and (integerp v) (> v 0)))
- :group 'coq-auto-compile)
-
(defvar coq-par-ancestor-files nil
"Hash remembering the state of locked ancestor files.
This hash maps true file names (in the sense of `file-truename')