Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0c00c5ac
Commit
0c00c5ac
authored
Jun 18, 2001
by
John Wiegley
Browse files
Disabled a test that often yields false failures.
parent
b868ed49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
lisp/eshell/esh-mode.el
lisp/eshell/esh-mode.el
+13
-13
No files found.
lisp/eshell/esh-mode.el
View file @
0c00c5ac
...
...
@@ -745,19 +745,19 @@ newline."
(
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."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment