]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-io-initialize): Do not use make-local-hook.
authorPavel Janík <Pavel@Janik.cz>
Sat, 16 Feb 2002 09:42:53 +0000 (09:42 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 16 Feb 2002 09:42:53 +0000 (09:42 +0000)
lisp/eshell/esh-io.el

index 7e927198c26e9dbd184427fb602cb2ce367b4788..d458bad0665595088e44e0baa358b85b8120d831 100644 (file)
@@ -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))