From: Jason Rumney Date: Sun, 24 Feb 2002 13:14:07 +0000 (+0000) Subject: (inferior-emacs-lisp-mode): Use hexl for the dummy process. X-Git-Tag: ttn-vms-21-2-B4~16494 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=33a651761665033af9c2c82240a10ab9199fa752;p=emacs.git (inferior-emacs-lisp-mode): Use hexl for the dummy process. --- 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