diff options
| author | David Aspinall | 1998-10-27 12:50:41 +0000 |
|---|---|---|
| committer | David Aspinall | 1998-10-27 12:50:41 +0000 |
| commit | 89e4346529b97cbf8ab50ae6da6ac52958586099 (patch) | |
| tree | e8653a52dab9edb73487c1bc9ee65b300f695409 | |
| parent | 6fa68bc76e88ef77a13073e25cf5fc9541d80363 (diff) | |
Fixed assert-until-point for ignore-process case
| -rw-r--r-- | generic/proof-script.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/generic/proof-script.el b/generic/proof-script.el index 4486ab9a..a28b513b 100644 --- a/generic/proof-script.el +++ b/generic/proof-script.el @@ -722,11 +722,14 @@ Assumes that point is at the end of a command." Default action if inside a comment is just process as far as the start of the comment. If you want something different, put it inside unclosed-comment-fun. If ignore-proof-process-p is set, no commands -will be added to the queue." +will be added to the queue and the buffer will not be activated for +scripting." (interactive) (or ignore-proof-process-p - (proof-shell-ready-prover)) - (proof-activate-scripting) + (progn + (proof-shell-ready-prover) + ;; FIXME: check this + (proof-activate-scripting))) (let ((semis)) (save-excursion ;; Give error if no non-whitespace between point and end of locked region. |
