# HG changeset patch # User Pavel Jank # Date 1013852326 0 # Node ID 42689b487e23e3b1dff20fb7ab4fe166651af229 # Parent 75975b4cc75c5e9c65a4c19ac7293543f97142a1 (eshell-glob-initialize): Do not use make-local-hook. diff -r 75975b4cc75c -r 42689b487e23 lisp/eshell/em-glob.el --- a/lisp/eshell/em-glob.el Sat Feb 16 09:38:26 2002 +0000 +++ b/lisp/eshell/em-glob.el Sat Feb 16 09:38:46 2002 +0000 @@ -132,9 +132,7 @@ (append eshell-glob-chars-list eshell-special-chars-outside-quoting)) (set (make-local-variable 'eshell-glob-chars-regexp) (format "[%s]+" (apply 'string eshell-glob-chars-list))) - (make-local-hook 'eshell-parse-argument-hook) (add-hook 'eshell-parse-argument-hook 'eshell-parse-glob-chars t t) - (make-local-hook 'eshell-pre-rewrite-command-hook) (add-hook 'eshell-pre-rewrite-command-hook 'eshell-no-command-globbing nil t))