]> git.eshelyaron.com Git - emacs.git/commitdiff
(remove-hook): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 16 Nov 1993 08:44:51 +0000 (08:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 16 Nov 1993 08:44:51 +0000 (08:44 +0000)
lisp/subr.el

index 02ada23bb672a4e91aa93dffa1920d53b8a942b0..6837adc8791211bf431aa263def75978de177d69 100644 (file)
@@ -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