mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
This commit is contained in:
parent
42b4edc550
commit
33a6517616
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user