aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/proof-config.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2012-01-09 17:21:44 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2012-01-09 17:21:44 +0000
commitfbcd39419bb84b3c61fb59298f73ce4b485d5454 (patch)
tree498f2fa90e12c2335b86d11c0af5806a33beb3f3 /generic/proof-config.el
parent527463db94b95e136637709561e07e59f06298c6 (diff)
Improve configuration for HOL Light. Allow goals display to be prefixed by ignored junk (val it : goalstack =).
Diffstat (limited to 'generic/proof-config.el')
-rw-r--r--generic/proof-config.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el
index 83528b9f..f0633e72 100644
--- a/generic/proof-config.el
+++ b/generic/proof-config.el
@@ -1155,7 +1155,11 @@ is shown to the user. Set to nil to disable."
This is an important setting. Output between `proof-shell-start-goals-regexp'
and `proof-shell-end-goals-regexp' will be pasted into the goals buffer
and possibly analysed further for proof-by-pointing markup.
-If it is left as nil, the goals buffer will not be used."
+If it is left as nil, the goals buffer will not be used.
+
+The goals display starts at the beginning of the match on this
+regexp, unless it has a match group, in which case it starts
+at (match-end 1)."
:type '(choice (const nil) regexp)
:group 'proof-shell)
@@ -1165,10 +1169,10 @@ This allows a shorter form of the proof state output to be displayed,
in case several messages are combined in a command output.
The portion treated as the goals output will be that between the
-start of the match on `proof-shell-start-goals-regexp' and the
+match on `proof-shell-start-goals-regexp' (which see) and the
start of the match on `proof-shell-end-goals-regexp'.
-If nil, use the whole of the output after
+If nil, use the whole of the output from the match on
`proof-shell-start-goals-regexp' up to the next prompt."
:type '(choice (const nil) regexp)
:group 'proof-shell)