summaryrefslogtreecommitdiff
path: root/lisp/eshell/esh-io.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-02-16 09:42:53 +0000
committerPavel Janík <Pavel@Janik.cz>2002-02-16 09:42:53 +0000
commite2e1cf2889a722ed211bd55d2acdc15da0ef04ce (patch)
tree7c62fcb1cf826fb4886c42f6c8e98d15f3974870 /lisp/eshell/esh-io.el
parentb29acea616001c66b573bb02810758fbaae9dcb2 (diff)
downloademacs-e2e1cf2889a722ed211bd55d2acdc15da0ef04ce.tar.gz
emacs-e2e1cf2889a722ed211bd55d2acdc15da0ef04ce.tar.bz2
emacs-e2e1cf2889a722ed211bd55d2acdc15da0ef04ce.zip
(eshell-io-initialize): Do not use make-local-hook.
Diffstat (limited to 'lisp/eshell/esh-io.el')
-rw-r--r--lisp/eshell/esh-io.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el
index 7e927198c26..d458bad0665 100644
--- a/lisp/eshell/esh-io.el
+++ b/lisp/eshell/esh-io.el
@@ -169,14 +169,11 @@ not be added to this variable."
(defun eshell-io-initialize ()
"Initialize the I/O subsystem code."
- (make-local-hook 'eshell-parse-argument-hook)
(add-hook 'eshell-parse-argument-hook
'eshell-parse-redirection nil t)
(make-local-variable 'eshell-current-redirections)
- (make-local-hook 'eshell-pre-rewrite-command-hook)
(add-hook 'eshell-pre-rewrite-command-hook
'eshell-strip-redirections nil t)
- (make-local-hook 'eshell-post-rewrite-command-hook)
(add-hook 'eshell-post-rewrite-command-hook
'eshell-apply-redirections nil t))