diff options
author | John Wiegley <johnw@newartisans.com> | 2000-10-13 09:02:39 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2000-10-13 09:02:39 +0000 |
commit | 8c6b1d83116d00e27f22e501e5ac4fea9a7ba182 (patch) | |
tree | 7f624b71b8c6ec4c388bc34b92a8ebe8d2fb20e5 /lisp/eshell/em-rebind.el | |
parent | e2c06b17a94a7b06cd27b643f8d5118243f06969 (diff) | |
download | emacs-8c6b1d83116d00e27f22e501e5ac4fea9a7ba182.tar.gz |
Added better remote directory support to Eshell, as well as a few bug
fixes. See the ChangeLog.
Diffstat (limited to 'lisp/eshell/em-rebind.el')
-rw-r--r-- | lisp/eshell/em-rebind.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-rebind.el b/lisp/eshell/em-rebind.el index 0463a78ffb4..4caae2da425 100644 --- a/lisp/eshell/em-rebind.el +++ b/lisp/eshell/em-rebind.el @@ -232,7 +232,7 @@ lock it at that." Sends an EOF only if point is at the end of the buffer and there is no input." (interactive "p") - (let ((proc (get-buffer-process (current-buffer)))) + (let ((proc (eshell-interactive-process))) (if (eobp) (cond ((/= (point) eshell-last-output-end) |