Mercurial > emacs
annotate doc/lispref/abbrevs.texi @ 85732:f62dcdb06cab
The variable `byte-compile-warnings' can now...
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 28 Oct 2007 23:54:13 +0000 |
parents | beb909dfc54d |
children | 13ae285f009a |
rev | line source |
---|---|
84046 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1999, 2001, 2002, 2003, | |
4 @c 2004, 2005, 2006, 2007 Free Software Foundation, Inc. | |
5 @c See the file elisp.texi for copying conditions. | |
84116
0ba80d073e27
(setfilename): Go up one more level to ../../info.
Glenn Morris <rgm@gnu.org>
parents:
84046
diff
changeset
|
6 @setfilename ../../info/abbrevs |
84046 | 7 @node Abbrevs, Processes, Syntax Tables, Top |
8 @chapter Abbrevs and Abbrev Expansion | |
9 @cindex abbrev | |
10 @c @cindex abbrev table Redundant with "abbrev". | |
11 | |
12 An abbreviation or @dfn{abbrev} is a string of characters that may be | |
13 expanded to a longer string. The user can insert the abbrev string and | |
14 find it replaced automatically with the expansion of the abbrev. This | |
15 saves typing. | |
16 | |
17 The set of abbrevs currently in effect is recorded in an @dfn{abbrev | |
18 table}. Each buffer has a local abbrev table, but normally all buffers | |
19 in the same major mode share one abbrev table. There is also a global | |
20 abbrev table. Normally both are used. | |
21 | |
22 An abbrev table is represented as an obarray containing a symbol for | |
23 each abbreviation. The symbol's name is the abbreviation; its value | |
24 is the expansion; its function definition is the hook function to do | |
25 the expansion (@pxref{Defining Abbrevs}); its property list cell | |
26 typically contains the use count, the number of times the abbreviation | |
27 has been expanded. Alternatively, the use count is on the | |
28 @code{count} property and the system-abbrev flag is on the | |
29 @code{system-type} property. Abbrevs with a non-@code{nil} | |
30 @code{system-type} property are called ``system'' abbrevs. They are | |
31 usually defined by modes or packages, instead of by the user, and are | |
32 treated specially in certain respects. | |
33 | |
34 Because the symbols used for abbrevs are not interned in the usual | |
35 obarray, they will never appear as the result of reading a Lisp | |
36 expression; in fact, normally they are never used except by the code | |
37 that handles abbrevs. Therefore, it is safe to use them in an | |
38 extremely nonstandard way. @xref{Creating Symbols}. | |
39 | |
40 For the user-level commands for abbrevs, see @ref{Abbrevs,, Abbrev | |
41 Mode, emacs, The GNU Emacs Manual}. | |
42 | |
43 @menu | |
44 * Abbrev Mode:: Setting up Emacs for abbreviation. | |
45 * Tables: Abbrev Tables. Creating and working with abbrev tables. | |
46 * Defining Abbrevs:: Specifying abbreviations and their expansions. | |
47 * Files: Abbrev Files. Saving abbrevs in files. | |
48 * Expansion: Abbrev Expansion. Controlling expansion; expansion subroutines. | |
49 * Standard Abbrev Tables:: Abbrev tables used by various major modes. | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
50 * Abbrev Properties:: How to read and set abbrev properties. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
51 Which properties have which effect. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
52 * Abbrev Table Properties:: How to read and set abbrev table properties. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
53 Which properties have which effect. |
84046 | 54 @end menu |
55 | |
56 @node Abbrev Mode, Abbrev Tables, Abbrevs, Abbrevs | |
57 @comment node-name, next, previous, up | |
58 @section Setting Up Abbrev Mode | |
59 | |
60 Abbrev mode is a minor mode controlled by the value of the variable | |
61 @code{abbrev-mode}. | |
62 | |
63 @defvar abbrev-mode | |
64 A non-@code{nil} value of this variable turns on the automatic expansion | |
65 of abbrevs when their abbreviations are inserted into a buffer. | |
66 If the value is @code{nil}, abbrevs may be defined, but they are not | |
67 expanded automatically. | |
68 | |
69 This variable automatically becomes buffer-local when set in any fashion. | |
70 @end defvar | |
71 | |
72 @defvar default-abbrev-mode | |
73 This is the value of @code{abbrev-mode} for buffers that do not override it. | |
74 This is the same as @code{(default-value 'abbrev-mode)}. | |
75 @end defvar | |
76 | |
77 @node Abbrev Tables, Defining Abbrevs, Abbrev Mode, Abbrevs | |
78 @section Abbrev Tables | |
79 | |
80 This section describes how to create and manipulate abbrev tables. | |
81 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
82 @defun make-abbrev-table &rest props |
84046 | 83 This function creates and returns a new, empty abbrev table---an obarray |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
84 containing no symbols. It is a vector filled with zeros. @var{props} |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
85 is a property list that is applied to the new table. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
86 @end defun |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
87 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
88 @defun abbrev-table-p table |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
89 Return non-@code{nil} is @var{table} is an abbrev table. |
84046 | 90 @end defun |
91 | |
92 @defun clear-abbrev-table table | |
93 This function undefines all the abbrevs in abbrev table @var{table}, | |
94 leaving it empty. It always returns @code{nil}. | |
95 @end defun | |
96 | |
97 @defun copy-abbrev-table table | |
98 This function returns a copy of abbrev table @var{table}---a new | |
99 abbrev table that contains the same abbrev definitions. The only | |
100 difference between @var{table} and the returned copy is that this | |
101 function sets the property lists of all copied abbrevs to 0. | |
102 @end defun | |
103 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
104 @defun define-abbrev-table tabname definitions &optional docstring &rest props |
84046 | 105 This function defines @var{tabname} (a symbol) as an abbrev table |
106 name, i.e., as a variable whose value is an abbrev table. It defines | |
107 abbrevs in the table according to @var{definitions}, a list of | |
108 elements of the form @code{(@var{abbrevname} @var{expansion} | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
109 [@var{hook}] [@var{props}...])}. These elements are passed as |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
110 arguments to @code{define-abbrev}. The return value is always |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
111 @code{nil}. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
112 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
113 The optional string @var{docstring} is the documentation string of the |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
114 variable @var{tabname}. The property list @var{props} is applied to |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
115 the abbrev table (@pxref{Abbrev Table Properties}). |
84046 | 116 |
117 If this function is called more than once for the same @var{tabname}, | |
118 subsequent calls add the definitions in @var{definitions} to | |
119 @var{tabname}, rather than overriding the entire original contents. | |
120 (A subsequent call only overrides abbrevs explicitly redefined or | |
121 undefined in @var{definitions}.) | |
122 @end defun | |
123 | |
124 @defvar abbrev-table-name-list | |
125 This is a list of symbols whose values are abbrev tables. | |
126 @code{define-abbrev-table} adds the new abbrev table name to this list. | |
127 @end defvar | |
128 | |
129 @defun insert-abbrev-table-description name &optional human | |
130 This function inserts before point a description of the abbrev table | |
131 named @var{name}. The argument @var{name} is a symbol whose value is an | |
132 abbrev table. The return value is always @code{nil}. | |
133 | |
134 If @var{human} is non-@code{nil}, the description is human-oriented. | |
135 System abbrevs are listed and identified as such. Otherwise the | |
136 description is a Lisp expression---a call to @code{define-abbrev-table} | |
137 that would define @var{name} as it is currently defined, but without | |
138 the system abbrevs. (The mode or package using @var{name} is supposed | |
139 to add these to @var{name} separately.) | |
140 @end defun | |
141 | |
142 @node Defining Abbrevs, Abbrev Files, Abbrev Tables, Abbrevs | |
143 @comment node-name, next, previous, up | |
144 @section Defining Abbrevs | |
145 @code{define-abbrev} is the low-level basic function for defining an | |
146 abbrev in a specified abbrev table. When major modes predefine standard | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
147 abbrevs, they should call @code{define-abbrev} and specify a @code{t} for |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
148 the @code{system-flag} property. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
149 Be aware that any saved non-``system'' abbrevs are |
84046 | 150 restored at startup, i.e. before some major modes are loaded. Major modes |
151 should therefore not assume that when they are first loaded their abbrev | |
152 tables are empty. | |
153 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
154 @defun define-abbrev table name expansion &optional hook &rest props |
84046 | 155 This function defines an abbrev named @var{name}, in @var{table}, to |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
156 expand to @var{expansion} and call @var{hook}, with properties |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
157 @var{props} (@pxref{Abbrev Properties}). The return value is @var{name}. |
84046 | 158 |
159 The argument @var{name} should be a string. The argument | |
160 @var{expansion} is normally the desired expansion (a string), or | |
161 @code{nil} to undefine the abbrev. If it is anything but a string or | |
162 @code{nil}, then the abbreviation ``expands'' solely by running | |
163 @var{hook}. | |
164 | |
165 The argument @var{hook} is a function or @code{nil}. If @var{hook} is | |
166 non-@code{nil}, then it is called with no arguments after the abbrev is | |
167 replaced with @var{expansion}; point is located at the end of | |
168 @var{expansion} when @var{hook} is called. | |
169 | |
170 @cindex @code{no-self-insert} property | |
171 If @var{hook} is a non-@code{nil} symbol whose @code{no-self-insert} | |
172 property is non-@code{nil}, @var{hook} can explicitly control whether | |
173 to insert the self-inserting input character that triggered the | |
174 expansion. If @var{hook} returns non-@code{nil} in this case, that | |
175 inhibits insertion of the character. By contrast, if @var{hook} | |
176 returns @code{nil}, @code{expand-abbrev} also returns @code{nil}, as | |
177 if expansion had not really occurred. | |
178 | |
179 Normally the function @code{define-abbrev} sets the variable | |
180 @code{abbrevs-changed} to @code{t}, if it actually changes the abbrev. | |
181 (This is so that some commands will offer to save the abbrevs.) It | |
182 does not do this for a ``system'' abbrev, since those won't be saved | |
183 anyway. | |
184 @end defun | |
185 | |
186 @defopt only-global-abbrevs | |
187 If this variable is non-@code{nil}, it means that the user plans to use | |
188 global abbrevs only. This tells the commands that define mode-specific | |
189 abbrevs to define global ones instead. This variable does not alter the | |
190 behavior of the functions in this section; it is examined by their | |
191 callers. | |
192 @end defopt | |
193 | |
194 @node Abbrev Files, Abbrev Expansion, Defining Abbrevs, Abbrevs | |
195 @section Saving Abbrevs in Files | |
196 | |
197 A file of saved abbrev definitions is actually a file of Lisp code. | |
198 The abbrevs are saved in the form of a Lisp program to define the same | |
199 abbrev tables with the same contents. Therefore, you can load the file | |
200 with @code{load} (@pxref{How Programs Do Loading}). However, the | |
201 function @code{quietly-read-abbrev-file} is provided as a more | |
202 convenient interface. | |
203 | |
204 User-level facilities such as @code{save-some-buffers} can save | |
205 abbrevs in a file automatically, under the control of variables | |
206 described here. | |
207 | |
208 @defopt abbrev-file-name | |
209 This is the default file name for reading and saving abbrevs. | |
210 @end defopt | |
211 | |
212 @defun quietly-read-abbrev-file &optional filename | |
213 This function reads abbrev definitions from a file named @var{filename}, | |
214 previously written with @code{write-abbrev-file}. If @var{filename} is | |
215 omitted or @code{nil}, the file specified in @code{abbrev-file-name} is | |
216 used. @code{save-abbrevs} is set to @code{t} so that changes will be | |
217 saved. | |
218 | |
219 This function does not display any messages. It returns @code{nil}. | |
220 @end defun | |
221 | |
222 @defopt save-abbrevs | |
223 A non-@code{nil} value for @code{save-abbrevs} means that Emacs should | |
224 offer the user to save abbrevs when files are saved. If the value is | |
225 @code{silently}, Emacs saves the abbrevs without asking the user. | |
226 @code{abbrev-file-name} specifies the file to save the abbrevs in. | |
227 @end defopt | |
228 | |
229 @defvar abbrevs-changed | |
230 This variable is set non-@code{nil} by defining or altering any | |
231 abbrevs (except ``system'' abbrevs). This serves as a flag for | |
232 various Emacs commands to offer to save your abbrevs. | |
233 @end defvar | |
234 | |
235 @deffn Command write-abbrev-file &optional filename | |
236 Save all abbrev definitions (except ``system'' abbrevs), for all abbrev | |
237 tables listed in @code{abbrev-table-name-list}, in the file | |
238 @var{filename}, in the form of a Lisp program that when loaded will | |
239 define the same abbrevs. If @var{filename} is @code{nil} or omitted, | |
240 @code{abbrev-file-name} is used. This function returns @code{nil}. | |
241 @end deffn | |
242 | |
243 @node Abbrev Expansion, Standard Abbrev Tables, Abbrev Files, Abbrevs | |
244 @comment node-name, next, previous, up | |
245 @section Looking Up and Expanding Abbreviations | |
246 | |
247 Abbrevs are usually expanded by certain interactive commands, | |
248 including @code{self-insert-command}. This section describes the | |
249 subroutines used in writing such commands, as well as the variables they | |
250 use for communication. | |
251 | |
252 @defun abbrev-symbol abbrev &optional table | |
253 This function returns the symbol representing the abbrev named | |
254 @var{abbrev}. The value returned is @code{nil} if that abbrev is not | |
255 defined. The optional second argument @var{table} is the abbrev table | |
256 to look it up in. If @var{table} is @code{nil}, this function tries | |
257 first the current buffer's local abbrev table, and second the global | |
258 abbrev table. | |
259 @end defun | |
260 | |
261 @defun abbrev-expansion abbrev &optional table | |
262 This function returns the string that @var{abbrev} would expand into (as | |
263 defined by the abbrev tables used for the current buffer). If | |
264 @var{abbrev} is not a valid abbrev, the function returns @code{nil}. | |
265 The optional argument @var{table} specifies the abbrev table to use, | |
266 as in @code{abbrev-symbol}. | |
267 @end defun | |
268 | |
269 @deffn Command expand-abbrev | |
270 This command expands the abbrev before point, if any. If point does not | |
271 follow an abbrev, this command does nothing. The command returns the | |
272 abbrev symbol if it did expansion, @code{nil} otherwise. | |
273 | |
274 If the abbrev symbol has a hook function which is a symbol whose | |
275 @code{no-self-insert} property is non-@code{nil}, and if the hook | |
276 function returns @code{nil} as its value, then @code{expand-abbrev} | |
277 returns @code{nil} even though expansion did occur. | |
278 @end deffn | |
279 | |
280 @deffn Command abbrev-prefix-mark &optional arg | |
281 This command marks the current location of point as the beginning of | |
282 an abbrev. The next call to @code{expand-abbrev} will use the text | |
283 from here to point (where it is then) as the abbrev to expand, rather | |
284 than using the previous word as usual. | |
285 | |
286 First, this command expands any abbrev before point, unless @var{arg} | |
287 is non-@code{nil}. (Interactively, @var{arg} is the prefix argument.) | |
288 Then it inserts a hyphen before point, to indicate the start of the | |
289 next abbrev to be expanded. The actual expansion removes the hyphen. | |
290 @end deffn | |
291 | |
292 @defopt abbrev-all-caps | |
293 When this is set non-@code{nil}, an abbrev entered entirely in upper | |
294 case is expanded using all upper case. Otherwise, an abbrev entered | |
295 entirely in upper case is expanded by capitalizing each word of the | |
296 expansion. | |
297 @end defopt | |
298 | |
299 @defvar abbrev-start-location | |
300 The value of this variable is a buffer position (an integer or a marker) | |
301 for @code{expand-abbrev} to use as the start of the next abbrev to be | |
302 expanded. The value can also be @code{nil}, which means to use the | |
303 word before point instead. @code{abbrev-start-location} is set to | |
304 @code{nil} each time @code{expand-abbrev} is called. This variable is | |
305 also set by @code{abbrev-prefix-mark}. | |
306 @end defvar | |
307 | |
308 @defvar abbrev-start-location-buffer | |
309 The value of this variable is the buffer for which | |
310 @code{abbrev-start-location} has been set. Trying to expand an abbrev | |
311 in any other buffer clears @code{abbrev-start-location}. This variable | |
312 is set by @code{abbrev-prefix-mark}. | |
313 @end defvar | |
314 | |
315 @defvar last-abbrev | |
316 This is the @code{abbrev-symbol} of the most recent abbrev expanded. This | |
317 information is left by @code{expand-abbrev} for the sake of the | |
318 @code{unexpand-abbrev} command (@pxref{Expanding Abbrevs,, Expanding | |
319 Abbrevs, emacs, The GNU Emacs Manual}). | |
320 @end defvar | |
321 | |
322 @defvar last-abbrev-location | |
323 This is the location of the most recent abbrev expanded. This contains | |
324 information left by @code{expand-abbrev} for the sake of the | |
325 @code{unexpand-abbrev} command. | |
326 @end defvar | |
327 | |
328 @defvar last-abbrev-text | |
329 This is the exact expansion text of the most recent abbrev expanded, | |
330 after case conversion (if any). Its value is @code{nil} if the abbrev | |
331 has already been unexpanded. This contains information left by | |
332 @code{expand-abbrev} for the sake of the @code{unexpand-abbrev} command. | |
333 @end defvar | |
334 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
335 @defvar abbrev-expand-functions |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
336 This is a special hook run @emph{around} the @code{expand-abbrev} |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
337 function. Functions on this hook are called with a single argument |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
338 which is a function that performs the normal abbrev expansion. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
339 The hook function can hence do anything it wants before and after |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
340 performing the expansion. It can also choose not to call its argument |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
341 and thus override the default behavior, or it may even call it |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
342 several times. The function should return the abbrev symbol if |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
343 expansion took place. |
84046 | 344 @end defvar |
345 | |
346 The following sample code shows a simple use of | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
347 @code{abbrev-expand-functions}. It assumes that @code{foo-mode} is a |
84046 | 348 mode for editing certain files in which lines that start with @samp{#} |
349 are comments. You want to use Text mode abbrevs for those lines. The | |
350 regular local abbrev table, @code{foo-mode-abbrev-table} is | |
351 appropriate for all other lines. Then you can put the following code | |
352 in your @file{.emacs} file. @xref{Standard Abbrev Tables}, for the | |
353 definitions of @code{local-abbrev-table} and @code{text-mode-abbrev-table}. | |
354 | |
355 @smallexample | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
356 (defun foo-mode-abbrev-expand-function (expand) |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
357 (if (not (save-excursion (forward-line 0) (eq (char-after) ?#))) |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
358 ;; Performs normal expansion. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
359 (funcall expand) |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
360 ;; We're inside a comment: use the text-mode abbrevs. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
361 (let ((local-abbrev-table text-mode-abbrev-table)) |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
362 (funcall expand)))) |
84046 | 363 |
364 (add-hook 'foo-mode-hook | |
365 #'(lambda () | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
366 (add-hook 'abbrev-expand-functions |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
367 'foo-mode-abbrev-expand-function |
84046 | 368 nil t))) |
369 @end smallexample | |
370 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
371 @node Standard Abbrev Tables, Abbrev Properties, Abbrev Expansion, Abbrevs |
84046 | 372 @comment node-name, next, previous, up |
373 @section Standard Abbrev Tables | |
374 | |
375 Here we list the variables that hold the abbrev tables for the | |
376 preloaded major modes of Emacs. | |
377 | |
378 @defvar global-abbrev-table | |
379 This is the abbrev table for mode-independent abbrevs. The abbrevs | |
380 defined in it apply to all buffers. Each buffer may also have a local | |
381 abbrev table, whose abbrev definitions take precedence over those in the | |
382 global table. | |
383 @end defvar | |
384 | |
385 @defvar local-abbrev-table | |
386 The value of this buffer-local variable is the (mode-specific) | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
387 abbreviation table of the current buffer. It can also be a list of |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
388 such tables. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
389 @end defvar |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
390 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
391 @defvar abbrev-minor-mode-table-alist |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
392 The value of this variable is a list of elements of the form |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
393 @code{(@var{mode} . @var{abbrev-table})} where @var{mode} is the name |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
394 of a variable: if the variable is bound to a non-@code{nil} value, |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
395 then the @var{abbrev-table} is active, otherwise it is ignored. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
396 @var{abbrev-table} can also be a list of abbrev tables. |
84046 | 397 @end defvar |
398 | |
399 @defvar fundamental-mode-abbrev-table | |
400 This is the local abbrev table used in Fundamental mode; in other words, | |
401 it is the local abbrev table in all buffers in Fundamental mode. | |
402 @end defvar | |
403 | |
404 @defvar text-mode-abbrev-table | |
405 This is the local abbrev table used in Text mode. | |
406 @end defvar | |
407 | |
408 @defvar lisp-mode-abbrev-table | |
409 This is the local abbrev table used in Lisp mode and Emacs Lisp mode. | |
410 @end defvar | |
411 | |
85710
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
412 @node Abbrev Properties, Abbrev Table Properties, Standard Abbrev Tables, Abbrevs |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
413 @section Abbrev Properties |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
414 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
415 Abbrevs have properties, some of which influence the way they work. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
416 They are usually set by providing the relevant arguments to |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
417 @code{define-abbrev} and can be manipulated with the functions: |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
418 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
419 @defun abbrev-put abbrev prop val |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
420 Set the property @var{prop} of abbrev @var{abbrev} to value @var{val}. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
421 @end defun |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
422 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
423 @defun abbrev-get abbrev prop |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
424 Return the property @var{prop} of abbrev @var{abbrev}, or @code{nil} |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
425 if the abbrev has no such property. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
426 @end defun |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
427 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
428 The following properties have special meaning: |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
429 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
430 @table @code |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
431 @item count |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
432 This property counts the number of times the abbrev has |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
433 been expanded. If not explicitly set, it is initialized to 0 by |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
434 @code{define-abbrev}. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
435 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
436 @item system-flag |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
437 If non-@code{nil}, this property marks the abbrev as a ``system'' |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
438 abbrev. Such abbrevs will not be saved to @var{abbrev-file-name}. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
439 Also, unless @code{system-flag} has the value @code{force}, |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
440 a ``system'' abbrev will not overwrite an existing definition for |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
441 a non-``system'' abbrev of the same name. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
442 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
443 @item :enable-function |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
444 If non-@code{nil}, this property should be set to a function of no |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
445 arguments which returns @code{nil} if the abbrev should not be used |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
446 and @code{t} otherwise. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
447 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
448 @item :case-fixed |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
449 If non-@code{nil}, this property indicates that the case of the |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
450 abbrev's name is significant and should only match a text with the |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
451 same capitalization. It also disables the code that modifies the |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
452 capitalization of the expansion. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
453 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
454 @end table |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
455 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
456 @node Abbrev Table Properties, , Abbrev Properties, Abbrevs |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
457 @section Abbrev Table Properties |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
458 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
459 Like abbrevs, abble tables have properties, some of which influence |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
460 the way they work. They are usually set by providing the relevant |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
461 arguments to @code{define-abbrev-table} and can be manipulated with |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
462 the functions: |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
463 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
464 @defun abbrev-table-put table prop val |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
465 Set the property @var{prop} of abbrev table @var{table} to value @var{val}. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
466 @end defun |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
467 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
468 @defun abbrev-table-get table prop |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
469 Return the property @var{prop} of abbrev table @var{table}, or @code{nil} |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
470 if the abbrev has no such property. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
471 @end defun |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
472 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
473 The following properties have special meaning: |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
474 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
475 @table @code |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
476 @item :enable-function |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
477 If non-@code{nil}, this property should be set to a function of no |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
478 arguments which returns @code{nil} if the abbrev table should not be |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
479 used and @code{t} otherwise. This is like the @code{:enable-function} |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
480 abbrev property except that it applies to all abbrevs in the table and |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
481 is used even before trying to find the abbrev before point. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
482 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
483 @item :case-fixed |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
484 If non-@code{nil}, this property indicates that the case of the names |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
485 is significant for all abbrevs in the table and should only match |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
486 a text with the same capitalization. It also disables the code that |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
487 modifies the capitalization of the expansion. This is like the |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
488 @code{:case-fixed} abbrev property except that it applies to all |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
489 abbrevs in the table. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
490 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
491 @item :regexp |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
492 If non-@code{nil}, this property is a regular expression that |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
493 indicates how to extract the name of the abbrev before point before |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
494 looking it up in the table. When the regular expression matches |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
495 before point, the abbrev name is expected to be in submatch 1. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
496 If this property is nil, @code{expand-function} defaults to |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
497 @code{"\\<\\(\\w+\\)\\W"}. This property allows the use of abbrevs |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
498 whose name contains characters of non-word syntax. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
499 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
500 @item :parents |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
501 This property holds the list of tables from which to inherit |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
502 other abbrevs. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
503 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
504 @item :abbrev-table-modiff |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
505 This property holds a counter incremented each time a new abbrev is |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
506 added to the table. |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
507 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
508 @end table |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
509 |
beb909dfc54d
Rewrite abbrev.c in Elisp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84116
diff
changeset
|
510 |
84046 | 511 @ignore |
512 arch-tag: 5ffdbe08-2cd4-48ec-a5a8-080f95756eec | |
513 @end ignore |