Mercurial > emacs
annotate lispref/hooks.texi @ 67368:5c87802be570
(url-cookie-save-interval): Simplify.
(url-cookie-setup-save-timer): Simplify.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 08 Dec 2005 00:01:35 +0000 |
parents | 9712592db32f |
children | 067115a6e738 7beb78bc1f8e |
rev | line source |
---|---|
6440 | 1 @c -*-texinfo-*- |
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 | 5 @c See the file elisp.texi for copying conditions. |
6 @setfilename ../info/hooks | |
12098 | 7 @node Standard Hooks, Index, Standard Keymaps, Top |
6440 | 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 | 11 |
7600 | 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 | 14 |
7600 | 15 Most of these variables have names ending with @samp{-hook}. They are |
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 | 33 |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
34 (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
|
35 @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
|
36 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
|
37 the above conventions.) |
6440 | 38 |
61235
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
39 @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
|
40 @c it here. |
6440 | 41 |
42 @table @code | |
43 @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
|
44 @xref{The Mark}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
45 |
6782
5b07647ec8f7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6440
diff
changeset
|
46 @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
|
47 @xref{Change Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
48 |
57217
6afcc5331733
(Standard Hooks): Add `after-change-major-mode-hook'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56622
diff
changeset
|
49 @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
|
50 @xref{Mode Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
51 |
6440 | 52 @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
|
53 @xref{Init File}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
54 |
6440 | 55 @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
|
56 @xref{Saving Properties}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
57 |
32597
df31899ab320
Missed this file in previous commit.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
22138
diff
changeset
|
58 @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
|
59 @xref{Creating Frames}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
60 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
61 @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
|
62 @xref{Reverting}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
63 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
64 @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
|
65 @xref{Saving Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
66 |
6440 | 67 @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
|
68 @xref{Auto Filling}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
69 |
6440 | 70 @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
|
71 @xref{Auto-Saving}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
72 |
6782
5b07647ec8f7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6440
diff
changeset
|
73 @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
|
74 @xref{Change Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
75 |
6440 | 76 @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
|
77 @xref{Init File}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
78 |
6440 | 79 @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
|
80 @xref{Creating Frames}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
81 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
82 @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
|
83 @xref{Reverting}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
84 |
53505
780b9eb8b58e
hooks.texi (Standard Hooks): Add before-save-hook.
Simon Josefsson <jas@extundo.com>
parents:
52401
diff
changeset
|
85 @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
|
86 @xref{Saving Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
87 |
6440 | 88 @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
|
89 @xref{Blinking}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
90 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
91 @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
|
92 @xref{Lazy Properties}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
93 |
6440 | 94 @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
|
95 @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
|
96 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
97 @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
|
98 @xref{Creating Buffer-Local}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
99 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
100 @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
|
101 @xref{Command-Line Arguments}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
102 |
6440 | 103 @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
|
104 @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
|
105 GNU Emacs Manual}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
106 |
67285
9712592db32f
(Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents:
65369
diff
changeset
|
107 @item compilation-finish-functions |
9712592db32f
(Standard Hooks): Add index entries. Mention `compilation-finish-functions'.
Eli Zaretskii <eliz@gnu.org>
parents:
65369
diff
changeset
|
108 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
|
109 |
42016
3900be0515b0
Add custom-define-hook.
Richard M. Stallman <rms@gnu.org>
parents:
39209
diff
changeset
|
110 @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
|
111 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
|
112 |
6440 | 113 @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
|
114 @xref{The Mark}. |
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-after-read-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 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
|
118 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
|
119 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-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
|
122 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
|
123 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
|
124 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 |
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
|
126 @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
|
127 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
|
128 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
|
129 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
|
130 |
6440 | 131 @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
|
132 @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
|
133 |
6440 | 134 @item diary-hook |
61235
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
135 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
|
136 for appointment notification. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
137 |
56622
46ea95c2b12c
(Standard Hooks): `disabled-command-hook' has been renamed to
Luc Teirlinck <teirllm@auburn.edu>
parents:
55416
diff
changeset
|
138 @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
|
139 @xref{Disabling Commands}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
140 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
141 @item echo-area-clear-hook |
65369
822218f80ae4
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
Chong Yidong <cyd@stupidchicken.com>
parents:
64889
diff
changeset
|
142 @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
|
143 |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
144 @item emacs-startup-hook |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
145 @xref{Init File}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
146 |
45979
87962bf716e3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42016
diff
changeset
|
147 @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
|
148 @xref{Visiting Functions}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
149 |
45979
87962bf716e3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42016
diff
changeset
|
150 @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
|
151 @xref{Visiting Functions}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
152 |
6440 | 153 @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
|
154 @xref{Change Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
155 |
61908
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
156 @item font-lock-beginning-of-syntax-function |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
157 @xref{Syntactic Font Lock}. |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
158 |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
159 @item font-lock-fontify-buffer-function |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
160 @xref{Other Font Lock Variables}. |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
161 |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
162 @item font-lock-fontify-region-function |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
163 @xref{Other Font Lock Variables}. |
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-mark-block-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-syntactic-face-function |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
169 @xref{Syntactic Font Lock}. |
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-unfontify-buffer-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-unfontify-region-function |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
175 @xref{Other Font Lock Variables}. |
100e0fab95e5
(Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents:
61835
diff
changeset
|
176 |
6440 | 177 @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
|
178 @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
|
179 |
39209
a0a6a6a2092f
(Standard Hooks): Add kbd-macro-termination-hook and apropos-mode-hook.
Eli Zaretskii <eliz@gnu.org>
parents:
34306
diff
changeset
|
180 @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
|
181 @xref{Keyboard Macros}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
182 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
183 @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
|
184 @xref{Killing Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
185 |
6440 | 186 @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
|
187 @xref{Killing Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
188 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
189 @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
|
190 @xref{Killing Emacs}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
191 |
6440 | 192 @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
|
193 @xref{Killing Emacs}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
194 |
6440 | 195 @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
|
196 |
6440 | 197 @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
|
198 @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
|
199 |
6440 | 200 @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
|
201 @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
|
202 Manual}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
203 |
6440 | 204 @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
|
205 @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
|
206 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
207 @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
|
208 @xref{Menu Bar}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
209 |
6440 | 210 @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
|
211 @xref{Minibuffer Misc}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
212 |
6782
5b07647ec8f7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6440
diff
changeset
|
213 @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
|
214 @xref{Minibuffer Misc}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
215 |
34306
de5c0dfaf459
Zap before-change-function, ftp-setup-write-file-hooks,
Dave Love <fx@gnu.org>
parents:
32597
diff
changeset
|
216 @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
|
217 @xref{Mouse Position}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
218 |
6440 | 219 @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
|
220 @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
|
221 |
6440 | 222 @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
|
223 @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
|
224 |
64081
c4030bc2f36d
(Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents:
61908
diff
changeset
|
225 @item occur-hook |
c4030bc2f36d
(Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents:
61908
diff
changeset
|
226 |
6440 | 227 @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
|
228 @xref{Command Overview}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
229 |
6440 | 230 @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
|
231 @xref{Abbrev Expansion}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
232 |
6440 | 233 @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
|
234 @xref{Command Overview}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
235 |
6440 | 236 @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
|
237 @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
|
238 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
239 @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
|
240 @xref{Window Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
241 |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
242 @item scheme-indent-function |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
243 |
6440 | 244 @item suspend-hook |
61235
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
245 @xref{Suspending Emacs}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
246 |
6440 | 247 @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
|
248 @xref{Suspending Emacs}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
249 |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
250 @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
|
251 @xref{Temporary Displays}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
252 |
6440 | 253 @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
|
254 @xref{Temporary Displays}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
255 |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
256 @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
|
257 @xref{Temporary Displays}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
258 |
6440 | 259 @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
|
260 @xref{Terminal-Specific}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
261 |
6440 | 262 @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
|
263 @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
|
264 |
6440 | 265 @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
|
266 @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
|
267 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
268 @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
|
269 @xref{Window Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
270 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
271 @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
|
272 @xref{Window Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
273 |
6440 | 274 @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
|
275 @xref{Window Systems}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
276 |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16056
diff
changeset
|
277 @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
|
278 @xref{Window Hooks}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
279 |
45979
87962bf716e3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42016
diff
changeset
|
280 @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
|
281 @xref{Saving Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
282 |
45979
87962bf716e3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42016
diff
changeset
|
283 @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
|
284 @xref{Saving Buffers}. |
98aa85818778
(Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents:
57217
diff
changeset
|
285 |
12098 | 286 @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
|
287 @xref{Saving Properties}. |
6440 | 288 @end table |
52401 | 289 |
290 @ignore | |
291 arch-tag: 55fd0296-d906-4551-b300-979d3846aa88 | |
292 @end ignore |