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:
parent
2676e09953
commit
d46490e312
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue