changeset 43337:fbc49c7a3803

(eshell-io-initialize): Do not use make-local-hook.
author Pavel Janík <Pavel@Janik.cz>
date Sat, 16 Feb 2002 09:42:53 +0000
parents 203308d314de
children 8de53e0342b4
files lisp/eshell/esh-io.el
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/eshell/esh-io.el	Sat Feb 16 09:42:35 2002 +0000
+++ b/lisp/eshell/esh-io.el	Sat Feb 16 09:42:53 2002 +0000
@@ -169,14 +169,11 @@
 
 (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))