aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2006-05-23 15:29:13 +0000
committerDavid Aspinall2006-05-23 15:29:13 +0000
commit77c055dc5cad5be9d30672182aea75fc4ae18b73 (patch)
treeeae16ecb7336170f8ea4ba1f30648cdb7bdf680f
parent06cfab8601ccb810795ea3a7439c795c81a24c89 (diff)
Fix to remove mention of coding-system-for-write, coding-system-for-read not available on non-Mule compiles
-rw-r--r--generic/proof-shell.el4
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