aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorDave Love <[email protected]>1998-04-21 18:38:34 +0000
committerDave Love <[email protected]>1998-04-21 18:38:34 +0000
commitd46490e312e95fcd2172d1cefe94706246423350 (patch)
tree22784ab913bf3975c73296566a9d2c4b9ec132ef /lisp/subr.el
parent2676e0995387ffd6d1464e952c4df54751dec91b (diff)
(remove-hook): Fix spurious quote.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index c21b862333..014217edf8 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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.