From d46490e312e95fcd2172d1cefe94706246423350 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 21 Apr 1998 18:38:34 +0000 Subject: [PATCH] (remove-hook): Fix spurious quote. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.2