aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/proof-shell.el
diff options
context:
space:
mode:
Diffstat (limited to 'generic/proof-shell.el')
-rw-r--r--generic/proof-shell.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index 6abef30b..a2402013 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -1502,9 +1502,9 @@ i.e., 'goals or 'response."
(while (re-search-forward proof-shell-start-goals-regexp end t)
(setq gstart (match-beginning 0))
(setq gend
- (if proof-shell-end-goals-regexp
+ (if (and proof-shell-end-goals-regexp
+ (re-search-forward proof-shell-end-goals-regexp end t))
(progn
- (re-search-forward proof-shell-end-goals-regexp end t)
(setq rstart (match-end 0))
(match-beginning 0))
end)))