annotate man/lispref/modes.texi @ 76:c0c698873ce1 r20-0b33

Import from CVS: tag r20-0b33
author cvs
date Mon, 13 Aug 2007 09:05:10 +0200
parents 376386a54a3c
children 558f606b08ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/modes.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Modes, Documentation, Scrollbars, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Major and Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @cindex mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 A @dfn{mode} is a set of definitions that customize XEmacs and can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 turned on and off while you edit. There are two varieties of modes:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 @dfn{major modes}, which are mutually exclusive and used for editing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 particular kinds of text, and @dfn{minor modes}, which provide features
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 that users can enable individually.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 This chapter describes how to write both major and minor modes, how to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 indicate them in the modeline, and how they run hooks supplied by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 user. For related topics such as keymaps and syntax tables, see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 @ref{Keymaps}, and @ref{Syntax Tables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 * Major Modes:: Defining major modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * Minor Modes:: Defining minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * Modeline Format:: Customizing the text that appears in the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 * Hooks:: How to use hooks; how to write code that provides hooks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 @node Major Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 @section Major Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 @cindex major mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 @cindex Fundamental mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 Major modes specialize XEmacs for editing particular kinds of text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Each buffer has only one major mode at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 The least specialized major mode is called @dfn{Fundamental mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 This mode has no mode-specific definitions or variable settings, so each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 XEmacs command behaves in its default manner, and each option is in its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 default state. All other major modes redefine various keys and options.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 For example, Lisp Interaction mode provides special key bindings for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 @key{LFD} (@code{eval-print-last-sexp}), @key{TAB}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (@code{lisp-indent-line}), and other keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 When you need to write several editing commands to help you perform a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 specialized editing task, creating a new major mode is usually a good
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 idea. In practice, writing a major mode is easy (in contrast to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 writing a minor mode, which is often difficult).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 If the new mode is similar to an old one, it is often unwise to modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 the old one to serve two purposes, since it may become harder to use and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 maintain. Instead, copy and rename an existing major mode definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 and alter the copy---or define a @dfn{derived mode} (@pxref{Derived
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Modes}). For example, Rmail Edit mode, which is in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 @file{emacs/lisp/rmailedit.el}, is a major mode that is very similar to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Text mode except that it provides three additional commands. Its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 definition is distinct from that of Text mode, but was derived from it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Rmail Edit mode is an example of a case where one piece of text is put
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 temporarily into a different major mode so it can be edited in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 different way (with ordinary XEmacs commands rather than Rmail). In such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 cases, the temporary major mode usually has a command to switch back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 the buffer's usual mode (Rmail mode, in this case). You might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 tempted to present the temporary redefinitions inside a recursive edit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 and restore the usual ones when the user exits; but this is a bad idea
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 because it constrains the user's options when it is done in more than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 one buffer: recursive edits must be exited most-recently-entered first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Using alternative major modes avoids this limitation. @xref{Recursive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Editing}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 The standard XEmacs Lisp library directory contains the code for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 several major modes, in files including @file{text-mode.el},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 @file{texinfo.el}, @file{lisp-mode.el}, @file{c-mode.el}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 @file{rmail.el}. You can look at these libraries to see how modes are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 written. Text mode is perhaps the simplest major mode aside from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Fundamental mode. Rmail mode is a complicated and specialized mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 * Major Mode Conventions:: Coding conventions for keymaps, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 * Example Major Modes:: Text mode and Lisp modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 * Auto Major Mode:: How XEmacs chooses the major mode automatically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 * Mode Help:: Finding out how to use a mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 * Derived Modes:: Defining a new major mode based on another major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 @node Major Mode Conventions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 @subsection Major Mode Conventions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 The code for existing major modes follows various coding conventions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 including conventions for local keymap and syntax table initialization,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 global names, and hooks. Please follow these conventions when you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 define a new major mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Define a command whose name ends in @samp{-mode}, with no arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 that switches to the new mode in the current buffer. This command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 should set up the keymap, syntax table, and local variables in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 existing buffer without changing the buffer's text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Write a documentation string for this command that describes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 special commands available in this mode. @kbd{C-h m}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (@code{describe-mode}) in your mode will display this string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 The documentation string may include the special documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 substrings, @samp{\[@var{command}]}, @samp{\@{@var{keymap}@}}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 @samp{\<@var{keymap}>}, that enable the documentation to adapt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 automatically to the user's own key bindings. @xref{Keys in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 Documentation}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 The major mode command should start by calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 @code{kill-all-local-variables}. This is what gets rid of the local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 variables of the major mode previously in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 The major mode command should set the variable @code{major-mode} to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 major mode command symbol. This is how @code{describe-mode} discovers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 which documentation to print.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 The major mode command should set the variable @code{mode-name} to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ``pretty'' name of the mode, as a string. This appears in the mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 @cindex functions in modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Since all global names are in the same name space, all the global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 variables, constants, and functions that are part of the mode should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 have names that start with the major mode name (or with an abbreviation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 of it if the name is long). @xref{Style Tips}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 @cindex keymaps in modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 The major mode should usually have its own keymap, which is used as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 local keymap in all buffers in that mode. The major mode function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 should call @code{use-local-map} to install this local map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 @xref{Active Keymaps}, for more information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 This keymap should be kept in a global variable named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 @code{@var{modename}-mode-map}. Normally the library that defines the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 mode sets this variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 @cindex syntax tables in modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 The mode may have its own syntax table or may share one with other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 related modes. If it has its own syntax table, it should store this in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 a variable named @code{@var{modename}-mode-syntax-table}. @xref{Syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Tables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 @cindex abbrev tables in modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 The mode may have its own abbrev table or may share one with other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 related modes. If it has its own abbrev table, it should store this in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 a variable named @code{@var{modename}-mode-abbrev-table}. @xref{Abbrev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 Tables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 Use @code{defvar} to set mode-related variables, so that they are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 reinitialized if they already have a value. (Such reinitialization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 could discard customizations made by the user.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 @cindex buffer-local variables in modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 To make a buffer-local binding for an Emacs customization variable, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 @code{make-local-variable} in the major mode command, not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 @code{make-variable-buffer-local}. The latter function would make the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 variable local to every buffer in which it is subsequently set, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 would affect buffers that do not use this mode. It is undesirable for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 mode to have such global effects. @xref{Buffer-Local Variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 It's ok to use @code{make-variable-buffer-local}, if you wish, for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 variable used only within a single Lisp package.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 @cindex mode hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 @cindex major mode hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 Each major mode should have a @dfn{mode hook} named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 @code{@var{modename}-mode-hook}. The major mode command should run that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 hook, with @code{run-hooks}, as the very last thing it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 does. @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 The major mode command may also run the hooks of some more basic modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 For example, @code{indented-text-mode} runs @code{text-mode-hook} as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 well as @code{indented-text-mode-hook}. It may run these other hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 immediately before the mode's own hook (that is, after everything else),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 or it may run them earlier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 If something special should be done if the user switches a buffer from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 this mode to any other major mode, the mode can set a local value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 @code{change-major-mode-hook}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 If this mode is appropriate only for specially-prepared text, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 major mode command symbol should have a property named @code{mode-class}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 with value @code{special}, put on as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @cindex @code{mode-class} property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 @cindex @code{special}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (put 'funny-mode 'mode-class 'special)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 This tells XEmacs that new buffers created while the current buffer has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Funny mode should not inherit Funny mode. Modes such as Dired, Rmail,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 and Buffer List use this feature.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 If you want to make the new mode the default for files with certain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 recognizable names, add an element to @code{auto-mode-alist} to select
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 the mode for those file names. If you define the mode command to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 autoload, you should add this element in the same file that calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @code{autoload}. Otherwise, it is sufficient to add the element in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 file that contains the mode definition. @xref{Auto Major Mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 @cindex @file{.emacs} customization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 In the documentation, you should provide a sample @code{autoload} form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 and an example of how to add to @code{auto-mode-alist}, that users can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 include in their @file{.emacs} files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @cindex mode loading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 The top-level forms in the file defining the mode should be written so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 that they may be evaluated more than once without adverse consequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 Even if you never load the file more than once, someone else will.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 @defvar change-major-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 This normal hook is run by @code{kill-all-local-variables} before it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 does anything else. This gives major modes a way to arrange for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 something special to be done if the user switches to a different major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 mode. For best results, make this variable buffer-local, so that it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 will disappear after doing its job and will not interfere with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 subsequent major mode. @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 @node Example Major Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 @subsection Major Mode Examples
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 Text mode is perhaps the simplest mode besides Fundamental mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 Here are excerpts from @file{text-mode.el} that illustrate many of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 the conventions listed above:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;; @r{Create mode-specific tables.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (defvar text-mode-syntax-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 "Syntax table used while in text mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (if text-mode-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 () ; @r{Do not change the table if it is already set up.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (setq text-mode-syntax-table (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (modify-syntax-entry ?\" ". " text-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (modify-syntax-entry ?\\ ". " text-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (modify-syntax-entry ?' "w " text-mode-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (defvar text-mode-abbrev-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 "Abbrev table used while in text mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (define-abbrev-table 'text-mode-abbrev-table ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (defvar text-mode-map nil) ; @r{Create a mode-specific keymap.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (if text-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 () ; @r{Do not change the keymap if it is already set up.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (setq text-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (define-key text-mode-map "\t" 'tab-to-tab-stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (define-key text-mode-map "\es" 'center-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (define-key text-mode-map "\eS" 'center-paragraph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 Here is the complete major mode function definition for Text mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (defun text-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 "Major mode for editing text intended for humans to read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 Special commands: \\@{text-mode-map@}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 Turning on text-mode runs the hook `text-mode-hook'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (use-local-map text-mode-map) ; @r{This provides the local keymap.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (setq mode-name "Text") ; @r{This name goes into the modeline.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (setq major-mode 'text-mode) ; @r{This is how @code{describe-mode}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 ; @r{finds the doc string to print.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (setq local-abbrev-table text-mode-abbrev-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (set-syntax-table text-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (run-hooks 'text-mode-hook)) ; @r{Finally, this permits the user to}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 ; @r{customize the mode with a hook.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 @cindex @file{lisp-mode.el}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 The three Lisp modes (Lisp mode, Emacs Lisp mode, and Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 Interaction mode) have more features than Text mode and the code is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 correspondingly more complicated. Here are excerpts from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @file{lisp-mode.el} that illustrate how these modes are written.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 @cindex syntax table example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 ;; @r{Create mode-specific table variables.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (defvar lisp-mode-syntax-table nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (defvar emacs-lisp-mode-syntax-table nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (defvar lisp-mode-abbrev-table nil "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (if (not emacs-lisp-mode-syntax-table) ; @r{Do not change the table}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ; @r{if it is already set.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (let ((i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (setq emacs-lisp-mode-syntax-table (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ;; @r{Set syntax of chars up to 0 to class of chars that are}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 ;; @r{part of symbol names but not words.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; @r{(The number 0 is @code{48} in the @sc{ASCII} character set.)}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (while (< i ?0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ;; @r{Set the syntax for other characters.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (modify-syntax-entry ? " " emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (modify-syntax-entry ?\t " " emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (modify-syntax-entry ?\( "() " emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (modify-syntax-entry ?\) ")( " emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 @dots{}))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 ;; @r{Create an abbrev table for lisp-mode.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (define-abbrev-table 'lisp-mode-abbrev-table ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 Much code is shared among the three Lisp modes. The following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 function sets various variables; it is called by each of the major Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 mode functions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (defun lisp-mode-variables (lisp-syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 ;; @r{The @code{lisp-syntax} argument is @code{nil} in Emacs Lisp mode,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 ;; @r{and @code{t} in the other two Lisp modes.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (cond (lisp-syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (if (not lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ;; @r{The Emacs Lisp mode syntax table always exists, but}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 ;; @r{the Lisp Mode syntax table is created the first time a}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 ;; @r{mode that needs it is called. This is to save space.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (progn (setq lisp-mode-syntax-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (copy-syntax-table emacs-lisp-mode-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 ;; @r{Change some entries for Lisp mode.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (modify-syntax-entry ?\| "\" "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (modify-syntax-entry ?\[ "_ "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (modify-syntax-entry ?\] "_ "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 lisp-mode-syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (set-syntax-table lisp-mode-syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (setq local-abbrev-table lisp-mode-abbrev-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 @dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 Functions such as @code{forward-paragraph} use the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 @code{paragraph-start} variable. Since Lisp code is different from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 ordinary text, the @code{paragraph-start} variable needs to be set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 specially to handle Lisp. Also, comments are indented in a special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 fashion in Lisp and the Lisp modes need their own mode-specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 @code{comment-indent-function}. The code to set these variables is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 rest of @code{lisp-mode-variables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (make-local-variable 'paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 ;; @r{Having @samp{^} is not clean, but @code{page-delimiter}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 ;; @r{has them too, and removing those is a pain.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (setq paragraph-start (concat "^$\\|" page-delimiter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (make-local-variable 'comment-indent-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (setq comment-indent-function 'lisp-comment-indent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 Each of the different Lisp modes has a slightly different keymap. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 example, Lisp mode binds @kbd{C-c C-l} to @code{run-lisp}, but the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 Lisp modes do not. However, all Lisp modes have some commands in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 common. The following function adds these common commands to a given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (defun lisp-mode-commands (map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (define-key map "\e\C-q" 'indent-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (define-key map "\177" 'backward-delete-char-untabify)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (define-key map "\t" 'lisp-indent-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Here is an example of using @code{lisp-mode-commands} to initialize a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 keymap, as part of the code for Emacs Lisp mode. First we declare a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 variable with @code{defvar} to hold the mode-specific keymap. When this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 @code{defvar} executes, it sets the variable to @code{nil} if it was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 void. Then we set up the keymap if the variable is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 This code avoids changing the keymap or the variable if it is already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 set up. This lets the user customize the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (defvar emacs-lisp-mode-map () "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (if emacs-lisp-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (setq emacs-lisp-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (lisp-mode-commands emacs-lisp-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 Finally, here is the complete major mode function definition for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 Emacs Lisp mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (defun emacs-lisp-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 "Major mode for editing Lisp code to run in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 Commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 Delete converts tabs to spaces as it moves back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 Blank lines separate paragraphs. Semicolons start comments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 \\@{emacs-lisp-mode-map@}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 Entry to this mode runs the hook `emacs-lisp-mode-hook'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (use-local-map emacs-lisp-mode-map) ; @r{This provides the local keymap.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (set-syntax-table emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (setq major-mode 'emacs-lisp-mode) ; @r{This is how @code{describe-mode}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 ; @r{finds out what to describe.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (setq mode-name "Emacs-Lisp") ; @r{This goes into the modeline.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (lisp-mode-variables nil) ; @r{This defines various variables.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (run-hooks 'emacs-lisp-mode-hook)) ; @r{This permits the user to use a}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 ; @r{hook to customize the mode.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 @node Auto Major Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 @subsection How XEmacs Chooses a Major Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 Based on information in the file name or in the file itself, XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 automatically selects a major mode for the new buffer when a file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 visited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 @deffn Command fundamental-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 Fundamental mode is a major mode that is not specialized for anything
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 in particular. Other major modes are defined in effect by comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 with this one---their definitions say what to change, starting from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 Fundamental mode. The @code{fundamental-mode} function does @emph{not}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 run any hooks; you're not supposed to customize it. (If you want Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 to behave differently in Fundamental mode, change the @emph{global}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 state of Emacs.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 @deffn Command normal-mode &optional find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 This function establishes the proper major mode and local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 bindings for the current buffer. First it calls @code{set-auto-mode},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 then it runs @code{hack-local-variables} to parse, and bind or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 evaluate as appropriate, any local variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 If the @var{find-file} argument to @code{normal-mode} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 non-@code{nil}, @code{normal-mode} assumes that the @code{find-file}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 function is calling it. In this case, it may process a local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 list at the end of the file and in the @samp{-*-} line. The variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 @code{enable-local-variables} controls whether to do so.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 If you run @code{normal-mode} interactively, the argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 @var{find-file} is normally @code{nil}. In this case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 @code{normal-mode} unconditionally processes any local variables list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 @xref{File variables, , Local Variables in Files, emacs, The XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 Reference Manual}, for the syntax of the local variables section of a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 @cindex file mode specification error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 @code{normal-mode} uses @code{condition-case} around the call to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 major mode function, so errors are caught and reported as a @samp{File
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 mode specification error}, followed by the original error message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 @defopt enable-local-variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 This variable controls processing of local variables lists in files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 being visited. A value of @code{t} means process the local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 lists unconditionally; @code{nil} means ignore them; anything else means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ask the user what to do for each file. The default value is @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 @defvar ignored-local-variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 This variable holds a list of variables that should not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 set by a local variables list. Any value specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 for one of these variables is ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 In addition to this list, any variable whose name has a non-@code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 @code{risky-local-variable} property is also ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 @defopt enable-local-eval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 This variable controls processing of @samp{Eval:} in local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 lists in files being visited. A value of @code{t} means process them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 unconditionally; @code{nil} means ignore them; anything else means ask
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 the user what to do for each file. The default value is @code{maybe}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 @defun set-auto-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 @cindex visited file mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 This function selects the major mode that is appropriate for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 current buffer. It may base its decision on the value of the @w{@samp{-*-}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 line, on the visited file name (using @code{auto-mode-alist}), or on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 value of a local variable. However, this function does not look for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 the @samp{mode:} local variable near the end of a file; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 @code{hack-local-variables} function does that. @xref{Choosing Modes, ,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 How Major Modes are Chosen, emacs, The XEmacs Reference Manual}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 @defopt default-major-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 This variable holds the default major mode for new buffers. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 standard value is @code{fundamental-mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 If the value of @code{default-major-mode} is @code{nil}, XEmacs uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 the (previously) current buffer's major mode for the major mode of a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 buffer. However, if the major mode symbol has a @code{mode-class}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 property with value @code{special}, then it is not used for new buffers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 Fundamental mode is used instead. The modes that have this property are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 those such as Dired and Rmail that are useful only with text that has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 been specially prepared.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 @defun set-buffer-major-mode buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 This function sets the major mode of @var{buffer} to the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 @code{default-major-mode}. If that variable is @code{nil}, it uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 the current buffer's major mode (if that is suitable).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 The low-level primitives for creating buffers do not use this function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 but medium-level commands such as @code{switch-to-buffer} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 @code{find-file-noselect} use it whenever they create buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 @defvar initial-major-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 @cindex @samp{*scratch*}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 The value of this variable determines the major mode of the initial
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 @samp{*scratch*} buffer. The value should be a symbol that is a major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 mode command name. The default value is @code{lisp-interaction-mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 @defvar auto-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 This variable contains an association list of file name patterns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (regular expressions; @pxref{Regular Expressions}) and corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 major mode functions. Usually, the file name patterns test for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 suffixes, such as @samp{.el} and @samp{.c}, but this need not be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 case. An ordinary element of the alist looks like @code{(@var{regexp} .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 @var{mode-function})}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (("^/tmp/fol/" . text-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ("\\.texinfo\\'" . texinfo-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ("\\.texi\\'" . texinfo-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 ("\\.el\\'" . emacs-lisp-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 ("\\.c\\'" . c-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ("\\.h\\'" . c-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 @dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 When you visit a file whose expanded file name (@pxref{File Name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 Expansion}) matches a @var{regexp}, @code{set-auto-mode} calls the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 corresponding @var{mode-function}. This feature enables XEmacs to select
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 the proper major mode for most files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 If an element of @code{auto-mode-alist} has the form @code{(@var{regexp}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 @var{function} t)}, then after calling @var{function}, XEmacs searches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 @code{auto-mode-alist} again for a match against the portion of the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 name that did not match before.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 This match-again feature is useful for uncompression packages: an entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 of the form @code{("\\.gz\\'" . @var{function})} can uncompress the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 and then put the uncompressed file in the proper mode according to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 name sans @samp{.gz}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 Here is an example of how to prepend several pattern pairs to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 @code{auto-mode-alist}. (You might use this sort of expression in your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 @file{.emacs} file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (setq auto-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 ;; @r{File name starts with a dot.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 '(("/\\.[^/]*\\'" . fundamental-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 ;; @r{File name has no dot.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 ("[^\\./]*\\'" . fundamental-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 ;; @r{File name ends in @samp{.C}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 ("\\.C\\'" . c++-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 auto-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 @defvar interpreter-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 This variable specifes major modes to use for scripts that specify a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 command interpreter in an @samp{#!} line. Its value is a list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 elements of the form @code{(@var{interpreter} . @var{mode})}; for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 example, @code{("perl" . perl-mode)} is one element present by default.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 The element says to use mode @var{mode} if the file specifies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 @var{interpreter}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 This variable is applicable only when the @code{auto-mode-alist} does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 not indicate which major mode to use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 @defun hack-local-variables &optional force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 This function parses, and binds or evaluates as appropriate, any local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 variables for the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 The handling of @code{enable-local-variables} documented for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 @code{normal-mode} actually takes place here. The argument @var{force}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 usually comes from the argument @var{find-file} given to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 @code{normal-mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 @node Mode Help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 @subsection Getting Help about a Major Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 @cindex mode help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 @cindex help for major mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 @cindex documentation for major mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 The @code{describe-mode} function is used to provide information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 about major modes. It is normally called with @kbd{C-h m}. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 @code{describe-mode} function uses the value of @code{major-mode},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 which is why every major mode function needs to set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 @code{major-mode} variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 @deffn Command describe-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 This function displays the documentation of the current major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 The @code{describe-mode} function calls the @code{documentation}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 function using the value of @code{major-mode} as an argument. Thus, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 displays the documentation string of the major mode function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (@xref{Accessing Documentation}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 @defvar major-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 This variable holds the symbol for the current buffer's major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 This symbol should have a function definition that is the command to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 switch to that major mode. The @code{describe-mode} function uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 documentation string of the function as the documentation of the major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 @node Derived Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 @subsection Defining Derived Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 It's often useful to define a new major mode in terms of an existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 one. An easy way to do this is to use @code{define-derived-mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 @defmac define-derived-mode variant parent name docstring body@dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 This construct defines @var{variant} as a major mode command, using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 @var{name} as the string form of the mode name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 The new command @var{variant} is defined to call the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 @var{parent}, then override certain aspects of that parent mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 The new mode has its own keymap, named @code{@var{variant}-map}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 @code{define-derived-mode} initializes this map to inherit from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @code{@var{parent}-map}, if it is not already set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 The new mode has its own syntax table, kept in the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 @code{@var{variant}-syntax-table}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 @code{define-derived-mode} initializes this variable by copying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 @code{@var{parent}-syntax-table}, if it is not already set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 The new mode has its own abbrev table, kept in the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 @code{@var{variant}-abbrev-table}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 @code{define-derived-mode} initializes this variable by copying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 @code{@var{parent}-abbrev-table}, if it is not already set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 The new mode has its own mode hook, @code{@var{variant}-hook},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 which it runs in standard fashion as the very last thing that it does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (The new mode also runs the mode hook of @var{parent} as part
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 of calling @var{parent}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 In addition, you can specify how to override other aspects of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 @var{parent} with @var{body}. The command @var{variant}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 evaluates the forms in @var{body} after setting up all its usual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 overrides, just before running @code{@var{variant}-hook}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 The argument @var{docstring} specifies the documentation string for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 new mode. If you omit @var{docstring}, @code{define-derived-mode}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 generates a documentation string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Here is a hypothetical example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (define-derived-mode hypertext-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 text-mode "Hypertext"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 "Major mode for hypertext.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 \\@{hypertext-mode-map@}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (setq case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (define-key hypertext-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 [down-mouse-3] 'do-hyper-link)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 @end defmac
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 @node Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 @section Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 @cindex minor mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 A @dfn{minor mode} provides features that users may enable or disable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 independently of the choice of major mode. Minor modes can be enabled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 individually or in combination. Minor modes would be better named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 ``Generally available, optional feature modes'' except that such a name is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 unwieldy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 A minor mode is not usually a modification of single major mode. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 example, Auto Fill mode may be used in any major mode that permits text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 insertion. To be general, a minor mode must be effectively independent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 of the things major modes do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 A minor mode is often much more difficult to implement than a major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 mode. One reason is that you should be able to activate and deactivate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 minor modes in any order. A minor mode should be able to have its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 desired effect regardless of the major mode and regardless of the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 minor modes in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 Often the biggest problem in implementing a minor mode is finding a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 way to insert the necessary hook into the rest of XEmacs. Minor mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 keymaps make this easier than it used to be.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 * Minor Mode Conventions:: Tips for writing a minor mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 * Keymaps and Minor Modes:: How a minor mode can have its own keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 @node Minor Mode Conventions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 @subsection Conventions for Writing Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 @cindex minor mode conventions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 @cindex conventions for writing minor modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 There are conventions for writing minor modes just as there are for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 major modes. Several of the major mode conventions apply to minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 modes as well: those regarding the name of the mode initialization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 function, the names of global symbols, and the use of keymaps and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 other tables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 In addition, there are several conventions that are specific to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 @cindex mode variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 Make a variable whose name ends in @samp{-mode} to represent the minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 mode. Its value should enable or disable the mode (@code{nil} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 disable; anything else to enable.) We call this the @dfn{mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 variable}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 This variable is used in conjunction with the @code{minor-mode-alist} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 display the minor mode name in the modeline. It can also enable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 or disable a minor mode keymap. Individual commands or hooks can also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 check the variable's value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 If you want the minor mode to be enabled separately in each buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 make the variable buffer-local.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 Define a command whose name is the same as the mode variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 Its job is to enable and disable the mode by setting the variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 The command should accept one optional argument. If the argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 @code{nil}, it should toggle the mode (turn it on if it is off, and off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 if it is on). Otherwise, it should turn the mode on if the argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 a positive integer, a symbol other than @code{nil} or @code{-}, or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 list whose @sc{car} is such an integer or symbol; it should turn the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 mode off otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 Here is an example taken from the definition of @code{transient-mark-mode}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 It shows the use of @code{transient-mark-mode} as a variable that enables or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 disables the mode's behavior, and also shows the proper way to toggle,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 enable or disable the minor mode based on the raw prefix argument value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (setq transient-mark-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (if (null arg) (not transient-mark-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (> (prefix-numeric-value arg) 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 Add an element to @code{minor-mode-alist} for each minor mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (@pxref{Modeline Variables}). This element should be a list of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 following form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (@var{mode-variable} @var{string})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 Here @var{mode-variable} is the variable that controls enabling of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 minor mode, and @var{string} is a short string, starting with a space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 to represent the mode in the modeline. These strings must be short so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 that there is room for several of them at once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 When you add an element to @code{minor-mode-alist}, use @code{assq} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 check for an existing element, to avoid duplication. For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (or (assq 'leif-mode minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (setq minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (cons '(leif-mode " Leif") minor-mode-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 @node Keymaps and Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 @subsection Keymaps and Minor Modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Each minor mode can have its own keymap, which is active when the mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 is enabled. To set up a keymap for a minor mode, add an element to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 alist @code{minor-mode-map-alist}. @xref{Active Keymaps}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 @cindex @code{self-insert-command}, minor modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 One use of minor mode keymaps is to modify the behavior of certain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 self-inserting characters so that they do something else as well as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 self-insert. In general, this is the only way to do that, since the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 facilities for customizing @code{self-insert-command} are limited to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 special cases (designed for abbrevs and Auto Fill mode). (Do not try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 substituting your own definition of @code{self-insert-command} for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 standard one. The editor command loop handles this function specially.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 @node Modeline Format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 @section Modeline Format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 @cindex modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 Each Emacs window (aside from minibuffer windows) includes a modeline,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 which displays status information about the buffer displayed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 window. The modeline contains information about the buffer, such as its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 name, associated file, depth of recursive editing, and the major and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 This section describes how the contents of the modeline are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 controlled. It is in the chapter on modes because much of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 information displayed in the modeline relates to the enabled major and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 minor modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 @code{modeline-format} is a buffer-local variable that holds a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 template used to display the modeline of the current buffer. All
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 windows for the same buffer use the same @code{modeline-format} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 their modelines appear the same (except for scrolling percentages and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 line numbers).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 The modeline of a window is normally updated whenever a different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 buffer is shown in the window, or when the buffer's modified-status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 changes from @code{nil} to @code{t} or vice-versa. If you modify any of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 the variables referenced by @code{modeline-format} (@pxref{Modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 Variables}), you may want to force an update of the modeline so as to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 display the new information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 @defun redraw-modeline &optional all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 Force redisplay of the current buffer's modeline. If @var{all} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 non-@code{nil}, then force redisplay of all modelines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 The modeline is usually displayed in inverse video. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 is controlled using the @code{modeline} face. @xref{Faces}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 * Modeline Data:: The data structure that controls the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 * Modeline Variables:: Variables used in that data structure.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 * %-Constructs:: Putting information into a modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 @node Modeline Data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 @subsection The Data Structure of the Modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 @cindex modeline construct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 The modeline contents are controlled by a data structure of lists,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 strings, symbols, and numbers kept in the buffer-local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 @code{mode-line-format}. The data structure is called a @dfn{modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 construct}, and it is built in recursive fashion out of simpler modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 constructs. The same data structure is used for constructing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 frame titles (@pxref{Frame Titles}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 @defvar modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 The value of this variable is a modeline construct with overall
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 responsibility for the modeline format. The value of this variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 controls which other variables are used to form the modeline text, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 where they appear.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 A modeline construct may be as simple as a fixed string of text, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 it usually specifies how to use other variables to construct the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 Many of these variables are themselves defined to have modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 constructs as their values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 The default value of @code{modeline-format} incorporates the values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 of variables such as @code{mode-name} and @code{minor-mode-alist}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 Because of this, very few modes need to alter @code{modeline-format}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 For most purposes, it is sufficient to alter the variables referenced by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 @code{modeline-format}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 A modeline construct may be a list, a symbol, or a string. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 value is a list, each element may be a list, a symbol, or a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 @cindex percent symbol in modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 @item @var{string}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 A string as a modeline construct is displayed verbatim in the mode line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 except for @dfn{@code{%}-constructs}. Decimal digits after the @samp{%}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 specify the field width for space filling on the right (i.e., the data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 is left justified). @xref{%-Constructs}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 @item @var{symbol}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 A symbol as a modeline construct stands for its value. The value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 @var{symbol} is used as a modeline construct, in place of @var{symbol}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 However, the symbols @code{t} and @code{nil} are ignored; so is any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 symbol whose value is void.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 There is one exception: if the value of @var{symbol} is a string, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 displayed verbatim: the @code{%}-constructs are not recognized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 @item (@var{string} @var{rest}@dots{}) @r{or} (@var{list} @var{rest}@dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 A list whose first element is a string or list means to process all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 elements recursively and concatenate the results. This is the most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 common form of mode line construct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @item (@var{symbol} @var{then} @var{else})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 A list whose first element is a symbol is a conditional. Its meaning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 depends on the value of @var{symbol}. If the value is non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 the second element, @var{then}, is processed recursively as a modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 element. But if the value of @var{symbol} is @code{nil}, the third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 element, @var{else}, is processed recursively. You may omit @var{else};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 then the mode line element displays nothing if the value of @var{symbol}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 @item (@var{width} @var{rest}@dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 A list whose first element is an integer specifies truncation or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 padding of the results of @var{rest}. The remaining elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 @var{rest} are processed recursively as modeline constructs and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 concatenated together. Then the result is space filled (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 @var{width} is positive) or truncated (to @minus{}@var{width} columns,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 if @var{width} is negative) on the right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 For example, the usual way to show what percentage of a buffer is above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 the top of the window is to use a list like this: @code{(-3 "%p")}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 If you do alter @code{modeline-format} itself, the new value should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 use the same variables that appear in the default value (@pxref{Modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 Variables}), rather than duplicating their contents or displaying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 the information in another fashion. This way, customizations made by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 the user or by Lisp programs (such as @code{display-time} and major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 modes) via changes to those variables remain effective.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 @cindex Shell mode @code{modeline-format}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 Here is an example of a @code{modeline-format} that might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 useful for @code{shell-mode}, since it contains the hostname and default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (setq modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (list ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 'modeline-modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 "%b--"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (getenv "HOST") ; @r{One element is not constant.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 ":"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 'default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 'global-mode-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 " %[("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 'mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 'modeline-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 'minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 "%n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 ")%]----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 '(line-number-mode "L%l--")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 '(-3 . "%p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 "-%-"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 @node Modeline Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 @subsection Variables Used in the Modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 This section describes variables incorporated by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 standard value of @code{modeline-format} into the text of the mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 line. There is nothing inherently special about these variables; any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 other variables could have the same effects on the modeline if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 @code{modeline-format} were changed to use them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 @defvar modeline-modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 This variable holds the value of the modeline construct that displays
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 whether the current buffer is modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 The default value of @code{modeline-modified} is @code{("--%1*%1+-")}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 This means that the modeline displays @samp{--**-} if the buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 modified, @samp{-----} if the buffer is not modified, @samp{--%%-} if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 the buffer is read only, and @samp{--%*--} if the buffer is read only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 and modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 Changing this variable does not force an update of the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 @defvar modeline-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 This variable identifies the buffer being displayed in the window. Its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 default value is @code{("%F: %17b")}, which means that it usually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 displays @samp{Emacs:} followed by seventeen characters of the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 name. (In a terminal frame, it displays the frame name instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 @samp{Emacs}; this has the effect of showing the frame number.) You may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 want to change this in modes such as Rmail that do not behave like a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 ``normal'' XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 @defvar global-mode-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 This variable holds a modeline spec that appears in the mode line by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 default, just after the buffer name. The command @code{display-time}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 sets @code{global-mode-string} to refer to the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 @code{display-time-string}, which holds a string containing the time and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 load information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 The @samp{%M} construct substitutes the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 @code{global-mode-string}, but this is obsolete, since the variable is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 included directly in the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 @defvar mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 This buffer-local variable holds the ``pretty'' name of the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 buffer's major mode. Each major mode should set this variable so that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 mode name will appear in the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 @defvar minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 This variable holds an association list whose elements specify how the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 modeline should indicate that a minor mode is active. Each element of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 the @code{minor-mode-alist} should be a two-element list:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (@var{minor-mode-variable} @var{modeline-string})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 More generally, @var{modeline-string} can be any mode line spec. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 appears in the mode line when the value of @var{minor-mode-variable} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 non-@code{nil}, and not otherwise. These strings should begin with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 spaces so that they don't run together. Conventionally, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 @var{minor-mode-variable} for a specific mode is set to a non-@code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 value when that minor mode is activated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 The default value of @code{minor-mode-alist} is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 @result{} ((vc-mode vc-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (abbrev-mode " Abbrev")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 (overwrite-mode overwrite-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 (auto-fill-function " Fill")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (defining-kbd-macro " Def")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (isearch-mode isearch-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 @code{minor-mode-alist} is not buffer-local. The variables mentioned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 in the alist should be buffer-local if the minor mode can be enabled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 separately in each buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 @defvar modeline-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 This buffer-local variable contains the modeline information on process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 status in modes used for communicating with subprocesses. It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 displayed immediately following the major mode name, with no intervening
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 space. For example, its value in the @samp{*shell*} buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 @code{(":@: %s")}, which allows the shell to display its status along
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 with the major mode as: @samp{(Shell:@: run)}. Normally this variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 @defvar default-modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 This variable holds the default @code{modeline-format} for buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 that do not override it. This is the same as @code{(default-value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 'modeline-format)}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 The default value of @code{default-modeline-format} is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 modeline-modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 modeline-buffer-identification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 global-mode-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 " %[("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 modeline-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 "%n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 ")%]----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 (line-number-mode "L%l--")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (-3 . "%p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 "-%-")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 @defvar vc-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 The variable @code{vc-mode}, local in each buffer, records whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 buffer's visited file is maintained with version control, and, if so,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 which kind. Its value is @code{nil} for no version control, or a string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 that appears in the mode line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 @node %-Constructs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 @subsection @code{%}-Constructs in the ModeLine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 The following table lists the recognized @code{%}-constructs and what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 they mean. In any construct except @samp{%%}, you can add a decimal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 integer after the @samp{%} to specify how many characters to display.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 @item %b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 The current buffer name, obtained with the @code{buffer-name} function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 @xref{Buffer Names}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 @item %f
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 The visited file name, obtained with the @code{buffer-file-name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 function. @xref{Buffer File Name}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 @item %F
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 The name of the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 @item %c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 The current column number of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 @item %l
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 The current line number of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 @item %*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 @samp{%} if the buffer is read only (see @code{buffer-read-only}); @*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 @samp{*} if the buffer is modified (see @code{buffer-modified-p}); @*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 @samp{-} otherwise. @xref{Buffer Modification}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 @item %+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 @samp{*} if the buffer is modified (see @code{buffer-modified-p}); @*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 @samp{%} if the buffer is read only (see @code{buffer-read-only}); @*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 @samp{-} otherwise. This differs from @samp{%*} only for a modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 read-only buffer. @xref{Buffer Modification}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 @item %&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 @samp{*} if the buffer is modified, and @samp{-} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 @item %s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 The status of the subprocess belonging to the current buffer, obtained with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 @code{process-status}. @xref{Process Information}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 @c The following two may only apply in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 @item %l
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 the current line number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 @item %S
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 the name of the selected frame; this is only meaningful under the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 X Window System. @xref{Frame Name}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 @item %t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 Whether the visited file is a text file or a binary file. (This is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 meaningful distinction only on certain operating systems.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 @item %p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 The percentage of the buffer text above the @strong{top} of window, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 @samp{Top}, @samp{Bottom} or @samp{All}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 @item %P
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 The percentage of the buffer text that is above the @strong{bottom} of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 the window (which includes the text visible in the window, as well as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 the text above the top), plus @samp{Top} if the top of the buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 visible on screen; or @samp{Bottom} or @samp{All}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 @item %n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 @samp{Narrow} when narrowing is in effect; nothing otherwise (see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 @code{narrow-to-region} in @ref{Narrowing}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 @item %[
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 An indication of the depth of recursive editing levels (not counting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 minibuffer levels): one @samp{[} for each editing level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 @xref{Recursive Editing}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 @item %]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 One @samp{]} for each recursive editing level (not counting minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 levels).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 @item %%
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 The character @samp{%}---this is how to include a literal @samp{%} in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 string in which @code{%}-constructs are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 @item %-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 Dashes sufficient to fill the remainder of the modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 The following two @code{%}-constructs are still supported, but they are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 obsolete, since you can get the same results with the variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 @code{mode-name} and @code{global-mode-string}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 @item %m
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 The value of @code{mode-name}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 @item %M
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 The value of @code{global-mode-string}. Currently, only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 @code{display-time} modifies the value of @code{global-mode-string}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 @node Hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 @section Hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 @cindex hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 A @dfn{hook} is a variable where you can store a function or functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 to be called on a particular occasion by an existing program. XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 provides hooks for the sake of customization. Most often, hooks are set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 up in the @file{.emacs} file, but Lisp programs can set them also.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 @xref{Standard Hooks}, for a list of standard hook variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 Most of the hooks in XEmacs are @dfn{normal hooks}. These variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 contain lists of functions to be called with no arguments. The reason
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 most hooks are normal hooks is so that you can use them in a uniform
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 way. You can usually tell when a hook is a normal hook, because its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 name ends in @samp{-hook}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 The recommended way to add a hook function to a normal hook is by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 calling @code{add-hook} (see below). The hook functions may be any of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 the valid kinds of functions that @code{funcall} accepts (@pxref{What Is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 a Function}). Most normal hook variables are initially void;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 @code{add-hook} knows how to deal with this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 As for abnormal hooks, those whose names end in @samp{-function} have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 a value that is a single function. Those whose names end in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 @samp{-hooks} have a value that is a list of functions. Any hook that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 is abnormal is abnormal because a normal hook won't do the job; either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 the functions are called with arguments, or their values are meaningful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 The name shows you that the hook is abnormal and that you should look at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 its documentation string to see how to use it properly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 Major mode functions are supposed to run a hook called the @dfn{mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 hook} as the last step of initialization. This makes it easy for a user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 to customize the behavior of the mode, by overriding the local variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 assignments already made by the mode. But hooks are used in other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 contexts too. For example, the hook @code{suspend-hook} runs just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 before XEmacs suspends itself (@pxref{Suspending XEmacs}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 Here's an expression that uses a mode hook to turn on Auto Fill mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 when in Lisp Interaction mode:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (add-hook 'lisp-interaction-mode-hook 'turn-on-auto-fill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 The next example shows how to use a hook to customize the way XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 formats C code. (People often have strong personal preferences for one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 format or another.) Here the hook function is an anonymous lambda
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 @cindex lambda expression in hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (add-hook 'c-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (function (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (setq c-indent-level 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 c-argdecl-indent 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 c-label-offset -4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 c-continued-statement-indent 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 c-brace-offset 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 comment-column 40))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (setq c++-mode-hook c-mode-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 The final example shows how the appearance of the modeline can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 modified for a particular class of buffers only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 (add-hook 'text-mode-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 (function (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 (setq modeline-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 '(modeline-modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 "Emacs: %14b"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 global-mode-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 "%[("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 "%n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 modeline-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 ") %]---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (-3 . "%p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 "-%-")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 At the appropriate time, XEmacs uses the @code{run-hooks} function to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 run particular hooks. This function calls the hook functions you have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 added with @code{add-hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 @defun run-hooks &rest hookvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 This function takes one or more hook variable names as arguments, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 runs each hook in turn. Each @var{hookvar} argument should be a symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 that is a hook variable. These arguments are processed in the order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 If a hook variable has a non-@code{nil} value, that value may be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 function or a list of functions. If the value is a function (either a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 lambda expression or a symbol with a function definition), it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 called. If it is a list, the elements are called, in order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 The hook functions are called with no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 For example, here's how @code{emacs-lisp-mode} runs its mode hook:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 (run-hooks 'emacs-lisp-mode-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 @defun add-hook hook function &optional append local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 This function is the handy way to add function @var{function} to hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 variable @var{hook}. The argument @var{function} may be any valid Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 function with the proper number of arguments. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 (add-hook 'text-mode-hook 'my-text-hook-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 adds @code{my-text-hook-function} to the hook called @code{text-mode-hook}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 You can use @code{add-hook} for abnormal hooks as well as for normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 hooks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 It is best to design your hook functions so that the order in which they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 are executed does not matter. Any dependence on the order is ``asking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 for trouble.'' However, the order is predictable: normally,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 @var{function} goes at the front of the hook list, so it will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 executed first (barring another @code{add-hook} call).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 If the optional argument @var{append} is non-@code{nil}, the new hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 function goes at the end of the hook list and will be executed last.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 If @var{local} is non-@code{nil}, that says to make the new hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 function local to the current buffer. Before you can do this, you must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 make the hook itself buffer-local by calling @code{make-local-hook}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 (@strong{not} @code{make-local-variable}). If the hook itself is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 buffer-local, then the value of @var{local} makes no difference---the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 hook function is always global.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 @defun remove-hook hook function &optional local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 This function removes @var{function} from the hook variable @var{hook}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 If @var{local} is non-@code{nil}, that says to remove @var{function}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 from the local hook list instead of from the global hook list. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 hook itself is not buffer-local, then the value of @var{local} makes no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 difference.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 @defun make-local-hook hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 This function makes the hook variable @code{hook} local to the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 buffer. When a hook variable is local, it can have local and global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 hook functions, and @code{run-hooks} runs all of them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 This function works by making @code{t} an element of the buffer-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 value. That serves as a flag to use the hook functions in the default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 value of the hook variable as well as those in the local value. Since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 @code{run-hooks} understands this flag, @code{make-local-hook} works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 with all normal hooks. It works for only some non-normal hooks---those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 whose callers have been updated to understand this meaning of @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 Do not use @code{make-local-variable} directly for hook variables; it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 not sufficient.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 @end defun