annotate lispref/hooks.texi @ 82446:643ae46953f2

*** empty log message ***
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Fri, 17 Aug 2007 21:56:02 +0000
parents 6b44d05a5f0b
children d7172f202ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 @c -*-texinfo-*-
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 @c This is part of the GNU Emacs Lisp Reference Manual.
75250
6d19c76d81c5 Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents: 70759
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1998, 2001, 2002, 2003, 2004,
6d19c76d81c5 Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents: 70759
diff changeset
4 @c 2005, 2006, 2007 Free Software Foundation, Inc.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 @c See the file elisp.texi for copying conditions.
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 @setfilename ../info/hooks
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 7600
diff changeset
7 @node Standard Hooks, Index, Standard Keymaps, Top
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 @appendix Standard Hooks
67285
9712592db32f (Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents: 65369
diff changeset
9 @cindex standard hooks
9712592db32f (Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents: 65369
diff changeset
10 @cindex hook variables, list of
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
7600
8bf07ff6a929 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 6782
diff changeset
12 The following is a list of hook variables that let you provide
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 45979
diff changeset
13 functions to be called from within Emacs on suitable occasions.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
7600
8bf07ff6a929 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 6782
diff changeset
15 Most of these variables have names ending with @samp{-hook}. They are
8bf07ff6a929 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 6782
diff changeset
16 @dfn{normal hooks}, run by means of @code{run-hooks}. The value of such
16056
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
17 a hook is a list of functions; the functions are called with no
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
18 arguments and their values are completely ignored. The recommended way
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
19 to put a new function on such a hook is to call @code{add-hook}.
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
20 @xref{Hooks}, for more information about using hooks.
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
21
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
22 Every major mode defines a mode hook named
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
23 @samp{@var{modename}-mode-hook}. The major mode command runs this
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
24 normal hook with @code{run-mode-hooks} as the very last thing it does.
61835
3ba1f5fe6274 (Standard Hooks): Most minor modes have mode hooks too.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61235
diff changeset
25 @xref{Mode Hooks}. Most minor modes have mode hooks too. Mode hooks
3ba1f5fe6274 (Standard Hooks): Most minor modes have mode hooks too.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61235
diff changeset
26 are omitted in the list below.
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
27
16056
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
28 The variables whose names end in @samp{-hooks} or @samp{-functions} are
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
29 usually @dfn{abnormal hooks}; their values are lists of functions, but
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
30 these functions are called in a special way (they are passed arguments,
65369
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
31 or their values are used). The variables whose names end in
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
32 @samp{-function} have single functions as their values.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
34 @c We need to xref to where each hook is documented or else document
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
35 @c it here.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 @table @code
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 @item activate-mark-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
39 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
40
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
41 @item after-change-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
42 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
43
57217
6afcc5331733 (Standard Hooks): Add `after-change-major-mode-hook'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56622
diff changeset
44 @item after-change-major-mode-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
45 @xref{Mode Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
46
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 @item after-init-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
48 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
49
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 @item after-insert-file-functions
80890
6b44d05a5f0b * elisp.texi (Top): Remove "Saving Properties" from detailed menu.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 75250
diff changeset
51 @xref{Format Conversion}.
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
52
32597
df31899ab320 Missed this file in previous commit.
Kai Großjohann <kgrossjo@eu.uu.net>
parents: 22138
diff changeset
53 @item after-make-frame-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
54 @xref{Creating Frames}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
55
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
56 @item after-revert-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
57 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
58
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
59 @item after-save-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
60 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
61
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 @item auto-fill-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
63 @xref{Auto Filling}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
64
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 @item auto-save-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
66 @xref{Auto-Saving}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
67
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
68 @item before-change-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
69 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
70
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 @item before-init-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
72 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
73
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 @item before-make-frame-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
75 @xref{Creating Frames}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
76
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
77 @item before-revert-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
78 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
79
53505
780b9eb8b58e hooks.texi (Standard Hooks): Add before-save-hook.
Simon Josefsson <jas@extundo.com>
parents: 52401
diff changeset
80 @item before-save-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
81 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
82
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 @item blink-paren-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
84 @xref{Blinking}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
85
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
86 @item buffer-access-fontify-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
87 @xref{Lazy Properties}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
88
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 @item calendar-load-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
90 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
91 @inforef{Calendar Customizing,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
92 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
93 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
94 @xref{Calendar Customizing,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
95 @end ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
96
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
97
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
98 @item change-major-mode-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
99 @xref{Creating Buffer-Local}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
100
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
101 @item command-line-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
102 @xref{Command-Line Arguments}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
103
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 @item comment-indent-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
105 @xref{Options for Comments,, Options Controlling Comments, emacs, the
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
106 GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
107
67285
9712592db32f (Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents: 65369
diff changeset
108 @item compilation-finish-functions
9712592db32f (Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents: 65369
diff changeset
109 Functions to call when a compilation process finishes.
9712592db32f (Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents: 65369
diff changeset
110
42016
3900be0515b0 Add custom-define-hook.
Richard M. Stallman <rms@gnu.org>
parents: 39209
diff changeset
111 @item custom-define-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
112 Hook called after defining each customize option.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
113
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 @item deactivate-mark-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
115 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
116
55416
b736c6cf17ee Add desktop-after-read-hook, desktop-no-desktop-file-hook and desktop-save-hook.
Lars Hansen <larsh@soem.dk>
parents: 53505
diff changeset
117 @item desktop-after-read-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
118 Normal hook run after a successful @code{desktop-read}. May be used
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
119 to show a buffer list. @xref{Saving Emacs Sessions,, Saving Emacs
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
120 Sessions, emacs, the GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
121
55416
b736c6cf17ee Add desktop-after-read-hook, desktop-no-desktop-file-hook and desktop-save-hook.
Lars Hansen <larsh@soem.dk>
parents: 53505
diff changeset
122 @item desktop-no-desktop-file-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
123 Normal hook run when @code{desktop-read} can't find a desktop file.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
124 May be used to show a dired buffer. @xref{Saving Emacs Sessions,,
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
125 Saving Emacs Sessions, emacs, the GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
126
55416
b736c6cf17ee Add desktop-after-read-hook, desktop-no-desktop-file-hook and desktop-save-hook.
Lars Hansen <larsh@soem.dk>
parents: 53505
diff changeset
127 @item desktop-save-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
128 Normal hook run before the desktop is saved in a desktop file. This
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
129 is useful for truncating history lists, for example. @xref{Saving
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
130 Emacs Sessions,, Saving Emacs Sessions, emacs, the GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
131
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 @item diary-display-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
133 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
134 @inforef{Fancy Diary Display,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
135 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
136 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
137 @xref{Fancy Diary Display,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
138 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
139
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 @item diary-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
141 List of functions called after the display of the diary. Can be used
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
142 for appointment notification.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
143
56622
46ea95c2b12c (Standard Hooks): `disabled-command-hook' has been renamed to
Luc Teirlinck <teirllm@auburn.edu>
parents: 55416
diff changeset
144 @item disabled-command-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
145 @xref{Disabling Commands}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
146
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
147 @item echo-area-clear-hook
65369
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
148 @xref{Echo Area Customization}.
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
149
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
150 @item emacs-startup-hook
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
151 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
152
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
153 @item find-file-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
154 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
155
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
156 @item find-file-not-found-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
157 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
158
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 @item first-change-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
160 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
161
61908
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
162 @item font-lock-beginning-of-syntax-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
163 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
164
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
165 @item font-lock-fontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
166 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
167
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
168 @item font-lock-fontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
169 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
170
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
171 @item font-lock-mark-block-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
172 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
173
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
174 @item font-lock-syntactic-face-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
175 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
176
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
177 @item font-lock-unfontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
178 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
179
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
180 @item font-lock-unfontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
181 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
182
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 @item initial-calendar-window-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
184 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
185 @inforef{Calendar Customizing,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
186 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
187 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
188 @xref{Calendar Customizing,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
189 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
190
39209
a0a6a6a2092f (Standard Hooks): Add kbd-macro-termination-hook and apropos-mode-hook.
Eli Zaretskii <eliz@gnu.org>
parents: 34306
diff changeset
191 @item kbd-macro-termination-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
192 @xref{Keyboard Macros}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
193
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
194 @item kill-buffer-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
195 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
196
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 @item kill-buffer-query-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
198 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
199
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
200 @item kill-emacs-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
201 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
202
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 @item kill-emacs-query-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
204 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
205
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 @item lisp-indent-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
207
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 @item list-diary-entries-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
209 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
210 @inforef{Fancy Diary Display,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
211 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
212 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
213 @xref{Fancy Diary Display,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
214 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
215
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 @item mail-setup-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
217 @xref{Mail Mode Misc,, Mail Mode Miscellany, emacs, the GNU Emacs
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
218 Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
219
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 @item mark-diary-entries-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
221 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
222 @inforef{Fancy Diary Display,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
223 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
224 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
225 @xref{Fancy Diary Display,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
226 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
227
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
228 @item menu-bar-update-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
229 @xref{Menu Bar}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
230
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 @item minibuffer-setup-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
232 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
233
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
234 @item minibuffer-exit-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
235 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
236
34306
de5c0dfaf459 Zap before-change-function, ftp-setup-write-file-hooks,
Dave Love <fx@gnu.org>
parents: 32597
diff changeset
237 @item mouse-position-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
238 @xref{Mouse Position}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
239
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 @item nongregorian-diary-listing-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
241 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
242 @inforef{Hebrew/Islamic Entries,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
243 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
244 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
245 @xref{Hebrew/Islamic Entries,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
246 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
247
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 @item nongregorian-diary-marking-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
249 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
250 @inforef{Hebrew/Islamic Entries,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
251 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
252 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
253 @xref{Hebrew/Islamic Entries,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
254 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
255
64081
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
256 @item occur-hook
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
257
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 @item post-command-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
259 @xref{Command Overview}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
260
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 @item pre-abbrev-expand-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
262 @xref{Abbrev Expansion}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
263
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 @item pre-command-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
265 @xref{Command Overview}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
266
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 @item print-diary-entries-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
268 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
269 @inforef{Diary Customizing,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
270 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
271 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
272 @xref{Diary Customizing,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
273 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
274
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
275 @item redisplay-end-trigger-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
276 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
277
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
278 @item scheme-indent-function
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
279
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280 @item suspend-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
281 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
282
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 @item suspend-resume-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
284 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
285
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
286 @item temp-buffer-setup-hook
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
287 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
288
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 @item temp-buffer-show-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
290 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
291
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
292 @item temp-buffer-show-hook
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
293 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
294
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 @item term-setup-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
296 @xref{Terminal-Specific}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
297
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 @item today-visible-calendar-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
299 @iftex
70629
5b38a2fc337c (Standard Hooks) [iftex]: Convert @xref's to emacs-xtra to @inforef's.
Eli Zaretskii <eliz@gnu.org>
parents: 70456
diff changeset
300 @inforef{Calendar Customizing,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
301 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
302 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
303 @xref{Calendar Customizing,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
304 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
305
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 @item today-invisible-calendar-hook
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
307 @iftex
70759
0ede170bfc73 (Standard Hooks): Correct typo.
Luc Teirlinck <teirllm@auburn.edu>
parents: 70629
diff changeset
308 @inforef{Calendar Customizing,, emacs-xtra}.
70456
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
309 @end iftex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
310 @ifnottex
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
311 @xref{Calendar Customizing,,, emacs}.
04b713e1a730 (Standard Hooks): Replace inforef to emacs-xtra by conditional xref's to
Eli Zaretskii <eliz@gnu.org>
parents: 70087
diff changeset
312 @end ifnottex
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
313
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
314 @item window-configuration-change-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
315 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
316
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
317 @item window-scroll-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
318 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
319
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 @item window-setup-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
321 @xref{Window Systems}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
322
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
323 @item window-size-change-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
324 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
325
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
326 @item write-contents-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
327 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
328
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
329 @item write-file-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
330 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
331
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 7600
diff changeset
332 @item write-region-annotate-functions
80890
6b44d05a5f0b * elisp.texi (Top): Remove "Saving Properties" from detailed menu.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 75250
diff changeset
333 @xref{Format Conversion}.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334 @end table
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
335
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
336 @ignore
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
337 arch-tag: 55fd0296-d906-4551-b300-979d3846aa88
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
338 @end ignore