diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:27:15 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 16:27:15 +0000 |
commit | 006041e58ef7adc6bb8b5a966887a77e52d7f2a5 (patch) | |
tree | af67366df16f1e642f65693847fbcd2e774bfb9d /lisp/icomplete.el | |
parent | fa9f58dd20986fd4872bea37fc7a6a9c36baab8b (diff) | |
download | emacs-006041e58ef7adc6bb8b5a966887a77e52d7f2a5.tar.gz |
(icomplete-minibuffer-setup): Remove make-local-hook.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 78477306771..e35458f156b 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -207,12 +207,10 @@ Conditions are: "Run in minibuffer on activation to establish incremental completion. Usually run by inclusion in `minibuffer-setup-hook'." (cond ((and icomplete-mode (icomplete-simple-completing-p)) - (make-local-hook 'pre-command-hook) (add-hook 'pre-command-hook (function (lambda () (run-hooks 'icomplete-pre-command-hook))) nil t) - (make-local-hook 'post-command-hook) (add-hook 'post-command-hook (function (lambda () (run-hooks 'icomplete-post-command-hook))) |