Mercurial > emacs
changeset 43509:d4b9f0aaf4f7
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Sun, 24 Feb 2002 13:14:07 +0000 |
parents | c092c3c65251 |
children | e728215fa6db |
files | lisp/ielm.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ielm.el Sun Feb 24 09:14:41 2002 +0000 +++ b/lisp/ielm.el Sun Feb 24 13:14:07 2002 +0000 @@ -459,7 +459,9 @@ ;; 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