emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/ielm.el


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/lisp/ielm.el
Date: Sun, 24 Feb 2002 08:14:07 -0500

Index: emacs/lisp/ielm.el
diff -c emacs/lisp/ielm.el:1.22 emacs/lisp/ielm.el:1.23
*** emacs/lisp/ielm.el:1.22     Tue Oct 10 13:27:38 2000
--- emacs/lisp/ielm.el  Sun Feb 24 08:14:07 2002
***************
*** 459,465 ****
  
    ;; 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")
      (process-kill-without-query (ielm-process))
      (goto-char (point-max))
      ;; Add a silly header
--- 459,467 ----
  
    ;; A dummy process to keep comint happy. It will never get any input
    (if (comint-check-proc (current-buffer)) nil
!     ;; 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]