diff options
| author | David Aspinall | 1999-09-13 17:12:11 +0000 |
|---|---|---|
| committer | David Aspinall | 1999-09-13 17:12:11 +0000 |
| commit | 9801ba41066fa1da92c04763cd362c7cc08faa83 (patch) | |
| tree | 9b307994166b293ea55245744e47065f7c94687c | |
| parent | 5dc6c925b49b88f3d2c4368a0a5c5491441a1a34 (diff) | |
Added callbacks to refresh toolbar
| -rw-r--r-- | generic/proof-script.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/generic/proof-script.el b/generic/proof-script.el index cd53552c..58a45a40 100644 --- a/generic/proof-script.el +++ b/generic/proof-script.el @@ -708,7 +708,10 @@ the ACS is marked in the current buffer. If CMD does not match any, (and proof-global-p (funcall proof-global-p cmd) proof-lift-global - (funcall proof-lift-global span)))))) + (funcall proof-lift-global span))))) + ;; FIXME: circular dependency on proof-toolbar here! + (proof-toolbar-refresh) + ) @@ -1047,7 +1050,9 @@ Optionally delete the region corresponding to the proof sequence." (proof-set-queue-end start)) (delete-spans start end 'type) (delete-span span) - (if kill (kill-region start end))))) + (if kill (kill-region start end)))) + ;; FIXME: circular dependency on proof-toolbar here! + (proof-toolbar-refresh)) (defun proof-setup-retract-action (start end proof-command delete-region) (let ((span (make-span start end))) |
