From 78a60e73ff0398392d55be24f60446c58808509c Mon Sep 17 00:00:00 2001 From: Hendrik Tews Date: Wed, 14 Nov 2012 09:09:32 +0000 Subject: update documentation --- coq/coq-compile-common.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'coq/coq-compile-common.el') 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 -- cgit v1.2.3