# HG changeset patch # User Richard M. Stallman # Date 753439491 0 # Node ID 6edbd7807a6e041804fbb9604ac628e442d197d2 # Parent ef406a9b2f44adfcc30c000bbb208ab80b81053b (remove-hook): Doc fix. diff -r ef406a9b2f44 -r 6edbd7807a6e lisp/subr.el --- a/lisp/subr.el Tue Nov 16 08:39:13 1993 +0000 +++ b/lisp/subr.el Tue Nov 16 08:44:51 1993 +0000 @@ -497,7 +497,7 @@ "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