diff options
| author | David Aspinall | 2006-05-26 13:17:30 +0000 |
|---|---|---|
| committer | David Aspinall | 2006-05-26 13:17:30 +0000 |
| commit | c7827c3cf1dc85adc8bc06eb25f0fbd15f0a27ad (patch) | |
| tree | 27a0b628dc27121e549019b7bb84314308e32f47 /generic | |
| parent | 77c055dc5cad5be9d30672182aea75fc4ae18b73 (diff) | |
Add C-g watcher for trace buffer
Diffstat (limited to 'generic')
| -rw-r--r-- | generic/pg-response.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/pg-response.el b/generic/pg-response.el index c8da307e..c0f743df 100644 --- a/generic/pg-response.el +++ b/generic/pg-response.el @@ -482,7 +482,7 @@ We fontify the output only if we're not too busy to do so." (defun proof-trace-buffer-finish () "Complete fontification in tracing buffer now that there's time to do so." (let ((fontifystart (proof-trace-fontify-pos))) - (if fontifystart ;; may be done already + (if (and fontifystart (not quit-flag));; may be done already/user desparately trying to avoid (save-excursion (set-buffer proof-trace-buffer) (proof-fontify-region fontifystart (point-max)))))) |
