]> git.eshelyaron.com Git - emacs.git/commitdiff
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
authorJason Rumney <jasonr@gnu.org>
Sun, 24 Feb 2002 13:14:07 +0000 (13:14 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 24 Feb 2002 13:14:07 +0000 (13:14 +0000)
lisp/ielm.el

index 8194a653e2499be9847d81e21b55e48ab3dc333c..5db57a52b59dd8dd8e1c25cf644e1ce7af3a559f 100644 (file)
@@ -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