diff options
author | Pavel Janík <Pavel@Janik.cz> | 2002-02-16 09:37:54 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2002-02-16 09:37:54 +0000 |
commit | 90100aac65972b46978d86cc39d04ebdd28fdb1f (patch) | |
tree | 5b5915376b03573e60ce3dee9f800b984ab03796 /lisp/eshell/em-cmpl.el | |
parent | 2772b8b0c5750b6adaefdca4c4d8b2585b846d63 (diff) | |
download | emacs-90100aac65972b46978d86cc39d04ebdd28fdb1f.tar.gz |
(eshell-cmpl-initialize): Do not use make-local-hook.
Diffstat (limited to 'lisp/eshell/em-cmpl.el')
-rw-r--r-- | lisp/eshell/em-cmpl.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el index 14407a8f236..b923cffff4e 100644 --- a/lisp/eshell/em-cmpl.el +++ b/lisp/eshell/em-cmpl.el @@ -277,13 +277,11 @@ to writing a completion function." ;; `pcomplete-arg-quote-list' should only be set after all the ;; load-hooks for any other extension modules have been run, which ;; is true at the time `eshell-mode-hook' is run - (make-local-hook 'eshell-mode-hook) (add-hook 'eshell-mode-hook (function (lambda () (set (make-local-variable 'pcomplete-arg-quote-list) eshell-special-chars-outside-quoting))) nil t) - (make-local-hook 'pcomplete-quote-arg-hook) (add-hook 'pcomplete-quote-arg-hook 'eshell-quote-backslash nil t) (define-key eshell-mode-map [(meta tab)] 'lisp-complete-symbol) (define-key eshell-mode-map [(meta control ?i)] 'lisp-complete-symbol) |