annotate lispref/hooks.texi @ 65483:5431d3ba10fd

2005-09-13 Chong Yidong <cyd@stupidchicken.com> * url-mailto.el (url-mailto): Always use a new mail buffer.
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 12 Sep 2005 23:02:16 +0000
parents 822218f80ae4
children 9712592db32f 10fe5fadaf89
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.
64889
e836425ee789 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64081
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1998, 2002, 2003, 2004,
e836425ee789 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64081
diff changeset
4 @c 2005 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
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
7600
8bf07ff6a929 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 6782
diff changeset
10 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
11 functions to be called from within Emacs on suitable occasions.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
7600
8bf07ff6a929 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 6782
diff changeset
13 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
14 @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
15 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
16 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
17 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
18 @xref{Hooks}, for more information about using hooks.
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
19
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
20 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
21 @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
22 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
23 @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
24 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
25
16056
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
26 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
27 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
28 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
29 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
30 @samp{-function} have single functions as their values.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
65369
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
32 (In older Emacs versions, some normal hooks had names ending in
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
33 @samp{-hooks} or @samp{-functions}, and some abnormal hooks had names
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
34 ending in @samp{-hook}. We have renamed all of these to conform to
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
35 the above conventions.)
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
37 @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
38 @c it here.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 @table @code
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 @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
42 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
43
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
44 @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
45 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
46
57217
6afcc5331733 (Standard Hooks): Add `after-change-major-mode-hook'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56622
diff changeset
47 @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
48 @xref{Mode Hooks}.
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-init-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
51 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
52
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 @item after-insert-file-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
54 @xref{Saving Properties}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
55
32597
df31899ab320 Missed this file in previous commit.
Kai Großjohann <kgrossjo@eu.uu.net>
parents: 22138
diff changeset
56 @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
57 @xref{Creating Frames}.
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-revert-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
60 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
61
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
62 @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
63 @xref{Saving Buffers}.
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-fill-function
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
66 @xref{Auto Filling}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
67
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 @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
69 @xref{Auto-Saving}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
70
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
71 @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
72 @xref{Change Hooks}.
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-init-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
75 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
76
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 @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
78 @xref{Creating Frames}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
79
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
80 @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
81 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
82
53505
780b9eb8b58e hooks.texi (Standard Hooks): Add before-save-hook.
Simon Josefsson <jas@extundo.com>
parents: 52401
diff changeset
83 @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
84 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
85
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 @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
87 @xref{Blinking}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
88
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
89 @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
90 @xref{Lazy Properties}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
91
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 @item calendar-load-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
93 @inforef{Calendar Customizing,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
94
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
95 @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
96 @xref{Creating Buffer-Local}.
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 command-line-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
99 @xref{Command-Line Arguments}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
100
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 @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
102 @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
103 GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
104
42016
3900be0515b0 Add custom-define-hook.
Richard M. Stallman <rms@gnu.org>
parents: 39209
diff changeset
105 @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
106 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
107
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 @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
109 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
110
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
111 @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
112 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
113 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
114 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
115
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
116 @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
117 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
118 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
119 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
120
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
121 @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
122 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
123 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
124 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
125
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 @item diary-display-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
127 @inforef{Fancy Diary Display,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
128
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 @item diary-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
130 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
131 for appointment notification.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
132
56622
46ea95c2b12c (Standard Hooks): `disabled-command-hook' has been renamed to
Luc Teirlinck <teirllm@auburn.edu>
parents: 55416
diff changeset
133 @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
134 @xref{Disabling Commands}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
135
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
136 @item echo-area-clear-hook
65369
822218f80ae4 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents: 64889
diff changeset
137 @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
138
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
139 @item emacs-startup-hook
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
140 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
141
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
142 @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
143 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
144
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
145 @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
146 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
147
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 @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
149 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
150
61908
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
151 @item font-lock-beginning-of-syntax-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
152 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
153
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
154 @item font-lock-fontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
155 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
156
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
157 @item font-lock-fontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
158 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
159
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
160 @item font-lock-mark-block-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
161 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
162
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
163 @item font-lock-syntactic-face-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
164 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
165
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
166 @item font-lock-unfontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
167 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
168
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
169 @item font-lock-unfontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
170 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
171
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 @item initial-calendar-window-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
173 @inforef{Calendar Customizing,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
174
39209
a0a6a6a2092f (Standard Hooks): Add kbd-macro-termination-hook and apropos-mode-hook.
Eli Zaretskii <eliz@gnu.org>
parents: 34306
diff changeset
175 @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
176 @xref{Keyboard Macros}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
177
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
178 @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
179 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
180
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 @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
182 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
183
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
184 @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
185 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
186
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 @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
188 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
189
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 @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
191
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 @item list-diary-entries-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
193 @inforef{Fancy Diary Display,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
194
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 @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
196 @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
197 Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
198
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 @item mark-diary-entries-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
200 @inforef{Fancy Diary Display,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
201
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
202 @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
203 @xref{Menu Bar}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
204
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 @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
206 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
207
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
208 @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
209 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
210
34306
de5c0dfaf459 Zap before-change-function, ftp-setup-write-file-hooks,
Dave Love <fx@gnu.org>
parents: 32597
diff changeset
211 @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
212 @xref{Mouse Position}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
213
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 @item nongregorian-diary-listing-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
215 @inforef{Hebrew/Islamic Entries,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
216
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 @item nongregorian-diary-marking-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
218 @inforef{Hebrew/Islamic Entries,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
219
64081
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
220 @item occur-hook
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
221
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 @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
223 @xref{Command Overview}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
224
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 @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
226 @xref{Abbrev Expansion}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
227
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 @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
229 @xref{Command Overview}.
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 print-diary-entries-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
232 @inforef{Diary Customizing,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
233
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
234 @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
235 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
236
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
237 @item scheme-indent-function
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
238
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 @item suspend-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
240 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
241
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 @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
243 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
244
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
245 @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
246 @xref{Temporary Displays}.
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 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
249 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
250
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
251 @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
252 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
253
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 @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
255 @xref{Terminal-Specific}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
256
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 @item today-visible-calendar-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
258 @inforef{Calendar Customizing,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
259
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 @item today-invisible-calendar-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
261 @inforef{Calendar Customizing,, emacs-xtra}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
262
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
263 @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
264 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
265
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
266 @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
267 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
268
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 @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
270 @xref{Window Systems}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
271
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
272 @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
273 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
274
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
275 @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
276 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
277
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
278 @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
279 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
280
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 7600
diff changeset
281 @item write-region-annotate-functions
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
282 @xref{Saving Properties}.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 @end table
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
284
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
285 @ignore
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
286 arch-tag: 55fd0296-d906-4551-b300-979d3846aa88
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
287 @end ignore