1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

Fix spelling of pre-command-hook.

This commit is contained in:
Karl Heuer 1994-02-11 08:10:01 +00:00
parent b0f2a7bf45
commit 649ddbf59f

View File

@ -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)
;;;---------------------------------------------------------------------------