summaryrefslogtreecommitdiff
path: root/lisp/icomplete.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-11-26 16:27:15 +0000
committerPavel Janík <Pavel@Janik.cz>2001-11-26 16:27:15 +0000
commitaf00e07ca09eac9ee3487a5c9e638b47d7cc53eb (patch)
tree0d9b7e6dbe777190e3ea669d557f51f621b91f6d /lisp/icomplete.el
parent793f395e6a2e6d965d26ef5ff9d980ff15968b7d (diff)
downloademacs-af00e07ca09eac9ee3487a5c9e638b47d7cc53eb.tar.gz
(icomplete-minibuffer-setup): Remove make-local-hook.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r--lisp/icomplete.el2
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)))