1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(remove-hook): Fix spurious quote.

This commit is contained in:
Dave Love 1998-04-21 18:38:34 +00:00
parent 2676e09953
commit d46490e312

View file

@ -632,7 +632,7 @@ This makes no difference if the hook is not buffer-local.
To make a hook variable buffer-local, always use
`make-local-hook', not `make-local-variable'."
(if (or (not (boundp hook)) ;unbound symbol, or
(not (default-boundp 'hook))
(not (default-boundp hook))
(null (symbol-value hook)) ;value is nil, or
(null function)) ;function is nil, then
nil ;Do nothing.