From: Karl Heuer Date: Fri, 11 Feb 1994 08:10:01 +0000 (+0000) Subject: Fix spelling of pre-command-hook. X-Git-Tag: emacs-19.34~9956 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=649ddbf59fbf99ab4922b9402ed1fd491e6b585a;p=emacs.git Fix spelling of pre-command-hook. --- diff --git a/lisp/completion.el b/lisp/completion.el index 183a39fc573..4f061539aa7 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -2542,7 +2542,7 @@ TYPE is the type of the wrapper to be added. Can be :before or :under." (defun completion-before-command () (funcall (or (get this-command 'completion-function) 'use-completion-under-or-before-point))) -(add-hook 'before-command-hook 'completion-before-command) +(add-hook 'pre-command-hook 'completion-before-command) ;;;---------------------------------------------------------------------------