aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-04-26 00:50:42 +0000
committerLuc Teirlinck2005-04-26 00:50:42 +0000
commitbe051bc0e6a3dede4e185830d271fb4766030922 (patch)
tree8792fc2d43a5db64f51c9c34279f718d4dc0d634
parentec1e11a9a47c5b1bca38c9beca7e9ea960d61901 (diff)
downloademacs-be051bc0e6a3dede4e185830d271fb4766030922.tar.gz
emacs-be051bc0e6a3dede4e185830d271fb4766030922.zip
(Standard Hooks): Most minor modes have mode hooks too.
-rw-r--r--lispref/hooks.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/lispref/hooks.texi b/lispref/hooks.texi
index ea7c6605796..d4a559adf37 100644
--- a/lispref/hooks.texi
+++ b/lispref/hooks.texi
@@ -19,7 +19,8 @@ to put a new function on such a hook is to call @code{add-hook}.
19Every major mode defines a mode hook named 19Every major mode defines a mode hook named
20@samp{@var{modename}-mode-hook}. The major mode command runs this 20@samp{@var{modename}-mode-hook}. The major mode command runs this
21normal hook with @code{run-mode-hooks} as the very last thing it does. 21normal hook with @code{run-mode-hooks} as the very last thing it does.
22@xref{Mode Hooks}. Mode hooks are omitted in the list below. 22@xref{Mode Hooks}. Most minor modes have mode hooks too. Mode hooks
23are omitted in the list below.
23 24
24The variables whose names end in @samp{-hooks} or @samp{-functions} are 25The variables whose names end in @samp{-hooks} or @samp{-functions} are
25usually @dfn{abnormal hooks}; their values are lists of functions, but 26usually @dfn{abnormal hooks}; their values are lists of functions, but