aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2010-09-28 16:31:20 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2010-09-28 16:31:20 +0000
commitb225466ee703a1845f81bb3ae431e462b03d5533 (patch)
tree61336cdc4692c433a3cdeb87d39dee461dc92334 /coq
parent6257937785ed8b4677a066af24a74d366ad8d3c7 (diff)
Fixed redundant undo limit custom variables.
Diffstat (limited to 'coq')
-rw-r--r--coq/coq.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 5e9f14e6..e87d9345 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -77,7 +77,7 @@ Set to t if you want this feature."
;; Command to initialize the Coq Proof Assistant
-(defcustom coq-default-undo-limit 300
+(defcustom coq-default-undo-limit 200
"Maximum number of Undo's possible when doing a proof."
:type 'number
:group 'coq)
@@ -843,7 +843,7 @@ This is specific to `coq-mode'."
:type 'integer
:setting "Set Printing Depth %i . ")
-(defpacustom undo-depth 200
+(defpacustom undo-depth coq-default-undo-limit
"Depth of undo history. Undo behaviour will break beyond this size."
:type 'integer
:setting "Set Undo %i . ")
@@ -852,11 +852,6 @@ This is specific to `coq-mode'."
"Whether to display timing information for each command."
:type 'boolean)
-(defpacustom undo-limit 100
- "Depth of undo history."
- :type 'integer
- :setting "Set Undo %i . ")
-
(defpacustom auto-compile-vos nil
"Whether to automatically compile vos and track dependencies."
:type 'boolean)