aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1999-09-21 17:49:32 +0000
committerDavid Aspinall1999-09-21 17:49:32 +0000
commitfd32916e9ac17b3dfc104464e04a37a394d6a2e8 (patch)
treed9cca11fda1c25dfe458bce790b87f0216a902ad
parent4dc791346fa9dd8f3308d28e94f27634102f4244 (diff)
Improved docstrings for regexp vars.
-rw-r--r--generic/proof-config.el26
1 files changed, 18 insertions, 8 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el
index 9be3d03f..c02d23da 100644
--- a/generic/proof-config.el
+++ b/generic/proof-config.el
@@ -815,18 +815,28 @@ be the value of proof-shell-wakeup-char."
(defcustom proof-shell-error-regexp nil
"Regexp matching an error report from the proof assistant.
-We assume that an error message corresponds to a failure
-in the last proof command executed. So don't match
-mere warning messages with this regexp.
-Moreover, an error message should not be matched as
-an eager annotation (see proof-shell-eager-annotation-start)
-otherwise it will be lost."
- :type 'regexp
+
+We assume that an error message corresponds to a failure in the last
+proof command executed. So don't match mere warning messages with
+this regexp. Moreover, an error message should not be matched as an
+eager annotation (see proof-shell-eager-annotation-start) otherwise it
+will be lost.
+
+The engine matches interrupts before errors, see proof-shell-interupt-regexp.
+
+It is safe to leave this variable unset nil."
+ :type '(choice nil regexp)
:group 'proof-shell)
(defcustom proof-shell-interrupt-regexp nil
"Regexp matching output indicating the assistant was interrupted.
-Similar notes apply as for `proof-shell-error-regexp'."
+We assume that an interrupt message corresponds to a failure
+in the last proof command executed. So don't match
+mere warning messages with this regexp.
+Moreover, an interrupt message should not be matched as
+an eager annotation (see proof-shell-eager-annotation-start)
+otherwise it will be lost.
+The engine matches interrupts before errors."
:type 'regexp
:group 'proof-shell)