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

index 0e826756c571f5fc05bab61dda749e3cc6f80f95..9d5f8bc3adc6db97bcd2cda959b0cb6ec3b7b33f 100644 (file)
@@ -132,9 +132,7 @@ This option slows down recursive glob processing by quite a bit."
        (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))