From: Dave Love Date: Tue, 21 Apr 1998 18:38:34 +0000 (+0000) Subject: (remove-hook): Fix spurious quote. X-Git-Tag: emacs-20.3~1380 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d46490e312e95fcd2172d1cefe94706246423350;p=emacs.git (remove-hook): Fix spurious quote. --- 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. 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.