annotate lispref/hooks.texi @ 65223:554ac3736464

(compile-auto-highlight, skeleton-further-elements): Add defvars.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 30 Aug 2005 10:27:54 +0000
parents e836425ee789
children 822218f80ae4 2d92f5c9d6ae
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,
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
29 or their values are used). A few of these variables are actually normal
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
30 hooks which were named before we established the convention that normal
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
31 hooks' names should end in @samp{-hook}.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 The variables whose names end in @samp{-function} have single functions
16056
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
34 as their values. (In older Emacs versions, some of these variables had
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
35 names ending in @samp{-hook} even though they were not normal hooks;
bfe1d6597f08 Explain better about abnormal hooks.
Richard M. Stallman <rms@gnu.org>
parents: 12098
diff changeset
36 however, we have renamed all of those.)
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
38 @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
39 @c it here.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 @table @code
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 @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
43 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
44
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
45 @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
46 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
47
57217
6afcc5331733 (Standard Hooks): Add `after-change-major-mode-hook'.
Luc Teirlinck <teirllm@auburn.edu>
parents: 56622
diff changeset
48 @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
49 @xref{Mode Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
50
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 @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
52 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
53
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 @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
55 @xref{Saving Properties}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
56
32597
df31899ab320 Missed this file in previous commit.
Kai Großjohann <kgrossjo@eu.uu.net>
parents: 22138
diff changeset
57 @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
58 @xref{Creating Frames}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
59
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
60 @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
61 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
62
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
63 @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
64 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
65
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 @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
67 @xref{Auto Filling}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
68
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 @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
70 @xref{Auto-Saving}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
71
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
72 @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
73 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
74
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 @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
76 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
77
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 @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
79 @xref{Creating Frames}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
80
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
81 @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
82 @xref{Reverting}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
83
53505
780b9eb8b58e hooks.texi (Standard Hooks): Add before-save-hook.
Simon Josefsson <jas@extundo.com>
parents: 52401
diff changeset
84 @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
85 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
86
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 @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
88 @xref{Blinking}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
89
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
90 @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
91 @xref{Lazy Properties}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
92
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 @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
94 @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
95
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
96 @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
97 @xref{Creating Buffer-Local}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
98
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
99 @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
100 @xref{Command-Line Arguments}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
101
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 @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
103 @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
104 GNU Emacs Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
105
42016
3900be0515b0 Add custom-define-hook.
Richard M. Stallman <rms@gnu.org>
parents: 39209
diff changeset
106 @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
107 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
108
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 @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
110 @xref{The Mark}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
111
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
112 @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
113 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
114 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
115 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
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-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
118 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
119 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
120 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
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-save-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 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
124 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
125 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
126
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 @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
128 @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
129
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 @item diary-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
131 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
132 for appointment notification.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
133
56622
46ea95c2b12c (Standard Hooks): `disabled-command-hook' has been renamed to
Luc Teirlinck <teirllm@auburn.edu>
parents: 55416
diff changeset
134 @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
135 @xref{Disabling Commands}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
136
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
137 @item echo-area-clear-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
138 @xref{The Echo Area}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
139
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
140 @item emacs-startup-hook
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
141 @xref{Init File}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
142
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
143 @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
144 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
145
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
146 @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
147 @xref{Visiting Functions}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
148
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 @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
150 @xref{Change Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
151
61908
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
152 @item font-lock-beginning-of-syntax-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
153 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
154
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
155 @item font-lock-fontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
156 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
157
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
158 @item font-lock-fontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
159 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
160
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
161 @item font-lock-mark-block-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
162 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
163
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
164 @item font-lock-syntactic-face-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
165 @xref{Syntactic Font Lock}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
166
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
167 @item font-lock-unfontify-buffer-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
168 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
169
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
170 @item font-lock-unfontify-region-function
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
171 @xref{Other Font Lock Variables}.
100e0fab95e5 (Standard Hooks): Add Font-Lock hooks.
Lute Kamstra <lute@gnu.org>
parents: 61835
diff changeset
172
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 @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
174 @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
175
39209
a0a6a6a2092f (Standard Hooks): Add kbd-macro-termination-hook and apropos-mode-hook.
Eli Zaretskii <eliz@gnu.org>
parents: 34306
diff changeset
176 @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
177 @xref{Keyboard Macros}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
178
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
179 @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
180 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
181
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 @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
183 @xref{Killing Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
184
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
185 @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
186 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
187
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 @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
189 @xref{Killing Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
190
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 @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
192
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 @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
194 @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
195
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 @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
197 @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
198 Manual}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
199
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 @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
201 @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
202
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
203 @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
204 @xref{Menu Bar}.
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 minibuffer-setup-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
207 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
208
6782
5b07647ec8f7 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 6440
diff changeset
209 @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
210 @xref{Minibuffer Misc}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
211
34306
de5c0dfaf459 Zap before-change-function, ftp-setup-write-file-hooks,
Dave Love <fx@gnu.org>
parents: 32597
diff changeset
212 @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
213 @xref{Mouse Position}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
214
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 @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
216 @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
217
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 @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
219 @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
220
64081
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
221 @item occur-hook
c4030bc2f36d (Standard Hooks): Add occur-hook.
Richard M. Stallman <rms@gnu.org>
parents: 61908
diff changeset
222
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223 @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
224 @xref{Command Overview}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
225
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 @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
227 @xref{Abbrev Expansion}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
228
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 @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
230 @xref{Command Overview}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
231
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 @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
233 @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
234
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
235 @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
236 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
237
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
238 @item scheme-indent-function
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 suspend-hook
61235
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
241 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
242
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 @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
244 @xref{Suspending Emacs}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
245
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
246 @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
247 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
248
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 @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
250 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
251
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
252 @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
253 @xref{Temporary Displays}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
254
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 @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
256 @xref{Terminal-Specific}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
257
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 @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
259 @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
260
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 @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
262 @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
263
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
264 @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
265 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
266
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
267 @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
268 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
269
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 @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
271 @xref{Window Systems}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
272
21007
66d807bdc5b4 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 16056
diff changeset
273 @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
274 @xref{Window Hooks}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
275
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
276 @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
277 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
278
45979
87962bf716e3 *** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42016
diff changeset
279 @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
280 @xref{Saving Buffers}.
98aa85818778 (Standard Hooks): Add some hooks. Add cross references and/or
Lute Kamstra <lute@gnu.org>
parents: 57217
diff changeset
281
12098
a6eb5f12b0f3 *** empty log message ***
Karl Heuer <kwzh@gnu.org>
parents: 7600
diff changeset
282 @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
283 @xref{Saving Properties}.
6440
fe511f97c2de Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 @end table
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
285
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
286 @ignore
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
287 arch-tag: 55fd0296-d906-4551-b300-979d3846aa88
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
288 @end ignore