Mercurial > emacs
changeset 38111:737e1a913c78
Disabled a test that often yields false failures.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Mon, 18 Jun 2001 20:03:33 +0000 |
parents | 514a4921c6e0 |
children | a188ef02f4da |
files | lisp/eshell/esh-mode.el |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/eshell/esh-mode.el Mon Jun 18 19:59:24 2001 +0000 +++ b/lisp/eshell/esh-mode.el Mon Jun 18 20:03:33 2001 +0000 @@ -745,19 +745,19 @@ (run-hooks 'eshell-post-command-hook) (insert-and-inherit input))))))))) -(eshell-deftest proc send-to-subprocess - "Send input to a subprocess" - ;; jww (1999-12-06): what about when bc is unavailable? - (if (not (eshell-search-path "bc")) - t - (eshell-insert-command "bc") - (eshell-insert-command "1 + 2") - (sit-for 1 0) - (forward-line -1) - (prog1 - (looking-at "3\n") - (eshell-insert-command "quit") - (sit-for 1 0)))) +; (eshell-deftest proc send-to-subprocess +; "Send input to a subprocess" +; ;; jww (1999-12-06): what about when bc is unavailable? +; (if (not (eshell-search-path "bc")) +; t +; (eshell-insert-command "bc") +; (eshell-insert-command "1 + 2") +; (sit-for 1 0) +; (forward-line -1) +; (prog1 +; (looking-at "3\n") +; (eshell-insert-command "quit") +; (sit-for 1 0)))) (defsubst eshell-kill-new () "Add the last input text to the kill ring."