changeset 21696:2f8ab139c8f1

(remove-hook): Fix spurious quote.
author Dave Love <fx@gnu.org>
date Tue, 21 Apr 1998 18:38:34 +0000
parents 2c9cfb84bf1b
children ecfe9bc12b7f
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Tue Apr 21 13:08:47 1998 +0000
+++ b/lisp/subr.el	Tue Apr 21 18:38:34 1998 +0000
@@ -632,7 +632,7 @@
 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.