aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1998-09-17 10:39:56 +0000
committerDavid Aspinall1998-09-17 10:39:56 +0000
commit84175a930133ca5fe74c871613c385b27b89765a (patch)
treee72300224904b277f23d49c286178cea4c0931de
parent405416572eb90ab099069c44c287786cbb0de2ce (diff)
Fix in proof-shell-handle-output
-rw-r--r--generic/proof.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/proof.el b/generic/proof.el
index 82e78569..5d2959b1 100644
--- a/generic/proof.el
+++ b/generic/proof.el
@@ -798,7 +798,7 @@ Returns the string (with faces) in the specified region."
(goto-char (point-max))
(setq start (search-backward-regexp start-regexp))
(save-excursion (setq end (- (search-forward-regexp end-regexp)
- (length (match-string 0)) 1)))
+ (length (match-string 0)))))
(setq string
(proof-shell-strip-annotations (buffer-substring start end)))
(delete-region start end)