]> git.eshelyaron.com Git - emacs.git/commitdiff
(remove-hook): Fix spurious quote.
authorDave Love <fx@gnu.org>
Tue, 21 Apr 1998 18:38:34 +0000 (18:38 +0000)
committerDave Love <fx@gnu.org>
Tue, 21 Apr 1998 18:38:34 +0000 (18:38 +0000)
lisp/subr.el

index c21b862333d71d1dfc4b31cd153ef8b997b2f86b..014217edf896e27037341eb96c2436adcb8f182e 100644 (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.