diff options
| author | David Aspinall | 2006-05-23 15:29:13 +0000 |
|---|---|---|
| committer | David Aspinall | 2006-05-23 15:29:13 +0000 |
| commit | 77c055dc5cad5be9d30672182aea75fc4ae18b73 (patch) | |
| tree | eae16ecb7336170f8ea4ba1f30648cdb7bdf680f /generic | |
| parent | 06cfab8601ccb810795ea3a7439c795c81a24c89 (diff) | |
Fix to remove mention of coding-system-for-write, coding-system-for-read not available on non-Mule compiles
Diffstat (limited to 'generic')
| -rw-r--r-- | generic/proof-shell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el index 9db2a3b3..d0ecc038 100644 --- a/generic/proof-shell.el +++ b/generic/proof-shell.el @@ -332,11 +332,11 @@ Does nothing if proof assistant is already running." ;; da: Unfortunately 'raw-text causes hangs with some Emacs, ;; since we get something not as raw as it was otherwise; ;; so leave it as it is, please - coding-system-for-read)) + (if (boundp 'coding-system-for-read) coding-system-for-read))) (coding-system-for-write (if proof-shell-unicode 'utf-8 ;; was: 'raw-text - coding-system-for-write))) + (if (boundp 'coding-system-for-write) coding-system-for-write)))) ;; An improvement here might be to catch failure of ;; make-comint and then kill off the buffer. Then we |
