From: Richard M. Stallman Date: Tue, 16 Nov 1993 08:44:51 +0000 (+0000) Subject: (remove-hook): Doc fix. X-Git-Tag: emacs-19.34~10805 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=827534ea93fc953423de8a8d8b6c25a80a7ed4ec;p=emacs.git (remove-hook): Doc fix. --- 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