aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2002-02-24 13:14:07 +0000
committerJason Rumney2002-02-24 13:14:07 +0000
commit33a651761665033af9c2c82240a10ab9199fa752 (patch)
tree0397a31a8c854db2ee55e1f11cddc8d41e331351
parent42b4edc55073c042bb4fc39e0a2b05d19c241283 (diff)
downloademacs-33a651761665033af9c2c82240a10ab9199fa752.tar.gz
emacs-33a651761665033af9c2c82240a10ab9199fa752.zip
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
-rw-r--r--lisp/ielm.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el
index 8194a653e24..5db57a52b59 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -459,7 +459,9 @@ Customised bindings may be defined in `ielm-map', which currently contains:
459 459
460 ;; A dummy process to keep comint happy. It will never get any input 460 ;; A dummy process to keep comint happy. It will never get any input
461 (if (comint-check-proc (current-buffer)) nil 461 (if (comint-check-proc (current-buffer)) nil
462 (start-process "ielm" (current-buffer) "cat") 462 ;; Was cat, but on non-Unix platforms that might not exist, so
463 ;; use hexl instead, which is part of the Emacs distribution.
464 (start-process "ielm" (current-buffer) "hexl")
463 (process-kill-without-query (ielm-process)) 465 (process-kill-without-query (ielm-process))
464 (goto-char (point-max)) 466 (goto-char (point-max))
465 ;; Add a silly header 467 ;; Add a silly header