aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1998-04-21 18:38:34 +0000
committerDave Love1998-04-21 18:38:34 +0000
commitd46490e312e95fcd2172d1cefe94706246423350 (patch)
tree22784ab913bf3975c73296566a9d2c4b9ec132ef
parent2676e0995387ffd6d1464e952c4df54751dec91b (diff)
downloademacs-d46490e312e95fcd2172d1cefe94706246423350.tar.gz
emacs-d46490e312e95fcd2172d1cefe94706246423350.zip
(remove-hook): Fix spurious quote.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index c21b862333d..014217edf89 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -632,7 +632,7 @@ This makes no difference if the hook is not buffer-local.
632To make a hook variable buffer-local, always use 632To make a hook variable buffer-local, always use
633`make-local-hook', not `make-local-variable'." 633`make-local-hook', not `make-local-variable'."
634 (if (or (not (boundp hook)) ;unbound symbol, or 634 (if (or (not (boundp hook)) ;unbound symbol, or
635 (not (default-boundp 'hook)) 635 (not (default-boundp hook))
636 (null (symbol-value hook)) ;value is nil, or 636 (null (symbol-value hook)) ;value is nil, or
637 (null function)) ;function is nil, then 637 (null function)) ;function is nil, then
638 nil ;Do nothing. 638 nil ;Do nothing.