aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2008-02-17 12:40:38 +0000
committerDavid Aspinall2008-02-17 12:40:38 +0000
commitff4ddfb5b74ff81a6064a10d3265b2273bfca8e4 (patch)
tree41e153c406d69de18d475f603057b3787263b834
parentd298c7e78504850850af3f282af12b790d3cbf8a (diff)
Add undo-depth setting and default it to 200, overriding Coq's 100 default.
-rw-r--r--coq/coq.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 0a286c73..dbd06876 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -1050,6 +1050,11 @@ To be used in `proof-shell-process-output-system-specific'."
:type 'integer
:setting "Set Printing Depth %i . ")
+(defpacustom undo-depth 200
+ "*Depth of undo history. Undo behaviour will break beyond this size."
+ :type 'integer
+ :setting "Set Undo %i . ")
+
(defpacustom time-commands nil
"*Whether to display timing information for each command."
:type 'boolean)