From 827534ea93fc953423de8a8d8b6c25a80a7ed4ec Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 16 Nov 1993 08:44:51 +0000 Subject: [PATCH] (remove-hook): Doc fix. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/subr.el b/lisp/subr.el index 02ada23bb67..6837adc8791 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -497,7 +497,7 @@ function, it is changed to a list of functions." "Remove from the value of HOOK the function FUNCTION. HOOK should be a symbol, and FUNCTION may be any valid function. If FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the -list of hooks to run in HOOK, then nothing is done. See add-hook." +list of hooks to run in HOOK, then nothing is done. See `add-hook'." (if (or (not (boundp hook)) ;unbound symbol, or (null (symbol-value hook)) ;value is nil, or (null function)) ;function is nil, then -- 2.39.5