diff options
author | Jason Rumney <jasonr@gnu.org> | 2002-02-24 13:14:07 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2002-02-24 13:14:07 +0000 |
commit | 33a651761665033af9c2c82240a10ab9199fa752 (patch) | |
tree | 0397a31a8c854db2ee55e1f11cddc8d41e331351 /lisp/ielm.el | |
parent | 42b4edc55073c042bb4fc39e0a2b05d19c241283 (diff) | |
download | emacs-33a651761665033af9c2c82240a10ab9199fa752.tar.gz |
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r-- | lisp/ielm.el | 4 |
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: ;; A dummy process to keep comint happy. It will never get any input (if (comint-check-proc (current-buffer)) nil - (start-process "ielm" (current-buffer) "cat") + ;; Was cat, but on non-Unix platforms that might not exist, so + ;; use hexl instead, which is part of the Emacs distribution. + (start-process "ielm" (current-buffer) "hexl") (process-kill-without-query (ielm-process)) (goto-char (point-max)) ;; Add a silly header |