# HG changeset patch # User Pavel Jank # Date 1013852573 0 # Node ID fbc49c7a380375daa9b3cb1e570e996b3169d6ae # Parent 203308d314de0e739a930a0a53aa2d27dfb9b021 (eshell-io-initialize): Do not use make-local-hook. diff -r 203308d314de -r fbc49c7a3803 lisp/eshell/esh-io.el --- 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))