Update FSF's address in the preamble.
[bpt/emacs.git] / src / abbrev.c
CommitLineData
7942b8ae 1/* Primitives for word-abbrev mode.
c6c5df7f 2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc.
7942b8ae
RS
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
c89475dc 8the Free Software Foundation; either version 2, or (at your option)
7942b8ae
RS
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
7942b8ae
RS
20
21
18160b98 22#include <config.h>
7942b8ae 23#include <stdio.h>
7942b8ae
RS
24#include "lisp.h"
25#include "commands.h"
26#include "buffer.h"
27#include "window.h"
7169beb1 28#include "syntax.h"
7942b8ae
RS
29
30/* An abbrev table is an obarray.
31 Each defined abbrev is represented by a symbol in that obarray
32 whose print name is the abbreviation.
33 The symbol's value is a string which is the expansion.
34 If its function definition is non-nil, it is called
35 after the expansion is done.
36 The plist slot of the abbrev symbol is its usage count. */
37
38/* List of all abbrev-table name symbols:
39 symbols whose values are abbrev tables. */
40
41Lisp_Object Vabbrev_table_name_list;
42
43/* The table of global abbrevs. These are in effect
44 in any buffer in which abbrev mode is turned on. */
45
46Lisp_Object Vglobal_abbrev_table;
47
48/* The local abbrev table used by default (in Fundamental Mode buffers) */
49
50Lisp_Object Vfundamental_mode_abbrev_table;
51
52/* Set nonzero when an abbrev definition is changed */
53
54int abbrevs_changed;
55
56int abbrev_all_caps;
57
58/* Non-nil => use this location as the start of abbrev to expand
59 (rather than taking the word before point as the abbrev) */
60
61Lisp_Object Vabbrev_start_location;
62
63/* Buffer that Vabbrev_start_location applies to */
64Lisp_Object Vabbrev_start_location_buffer;
65
66/* The symbol representing the abbrev most recently expanded */
67
68Lisp_Object Vlast_abbrev;
69
70/* A string for the actual text of the abbrev most recently expanded.
71 This has more info than Vlast_abbrev since case is significant. */
72
73Lisp_Object Vlast_abbrev_text;
74
75/* Character address of start of last abbrev expanded */
76
77int last_abbrev_point;
78
dbd7a969
RS
79/* Hook to run before expanding any abbrev. */
80
81Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;
7942b8ae
RS
82\f
83DEFUN ("make-abbrev-table", Fmake_abbrev_table, Smake_abbrev_table, 0, 0, 0,
84 "Create a new, empty abbrev table object.")
85 ()
86{
87 return Fmake_vector (make_number (59), make_number (0));
88}
89
90DEFUN ("clear-abbrev-table", Fclear_abbrev_table, Sclear_abbrev_table, 1, 1, 0,
91 "Undefine all abbrevs in abbrev table TABLE, leaving it empty.")
92 (table)
93 Lisp_Object table;
94{
95 int i, size;
96
97 CHECK_VECTOR (table, 0);
98 size = XVECTOR (table)->size;
99 abbrevs_changed = 1;
100 for (i = 0; i < size; i++)
101 XVECTOR (table)->contents[i] = make_number (0);
102 return Qnil;
103}
104\f
105DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_abbrev, 3, 5, 0,
106 "Define an abbrev in TABLE named NAME, to expand to EXPANSION and call HOOK.\n\
107NAME and EXPANSION are strings.\n\
108To undefine an abbrev, define it with EXPANSION = nil.\n\
109If HOOK is non-nil, it should be a function of no arguments;\n\
110it is called after EXPANSION is inserted.")
111 (table, name, expansion, hook, count)
112 Lisp_Object table, name, expansion, hook, count;
113{
114 Lisp_Object sym, oexp, ohook, tem;
115 CHECK_VECTOR (table, 0);
116 CHECK_STRING (name, 1);
d427b66a 117 if (!NILP (expansion))
7942b8ae 118 CHECK_STRING (expansion, 2);
d427b66a 119 if (NILP (count))
7942b8ae
RS
120 count = make_number (0);
121 else
122 CHECK_NUMBER (count, 0);
123
124 sym = Fintern (name, table);
125
126 oexp = XSYMBOL (sym)->value;
127 ohook = XSYMBOL (sym)->function;
128 if (!((EQ (oexp, expansion)
09e82d7c 129 || (STRINGP (oexp) && STRINGP (expansion)
d427b66a 130 && (tem = Fstring_equal (oexp, expansion), !NILP (tem))))
7942b8ae
RS
131 &&
132 (EQ (ohook, hook)
d427b66a 133 || (tem = Fequal (ohook, hook), !NILP (tem)))))
7942b8ae
RS
134 abbrevs_changed = 1;
135
136 Fset (sym, expansion);
137 Ffset (sym, hook);
138 Fsetplist (sym, count);
139
140 return name;
141}
142
143DEFUN ("define-global-abbrev", Fdefine_global_abbrev, Sdefine_global_abbrev, 2, 2,
144 "sDefine global abbrev: \nsExpansion for %s: ",
145 "Define ABBREV as a global abbreviation for EXPANSION.")
78ce396a
EN
146 (abbrev, expansion)
147 Lisp_Object abbrev, expansion;
7942b8ae 148{
78ce396a 149 Fdefine_abbrev (Vglobal_abbrev_table, Fdowncase (abbrev),
7942b8ae 150 expansion, Qnil, make_number (0));
78ce396a 151 return abbrev;
7942b8ae
RS
152}
153
154DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, Sdefine_mode_abbrev, 2, 2,
155 "sDefine mode abbrev: \nsExpansion for %s: ",
156 "Define ABBREV as a mode-specific abbreviation for EXPANSION.")
78ce396a
EN
157 (abbrev, expansion)
158 Lisp_Object abbrev, expansion;
7942b8ae 159{
d427b66a 160 if (NILP (current_buffer->abbrev_table))
7942b8ae
RS
161 error ("Major mode has no abbrev table");
162
78ce396a 163 Fdefine_abbrev (current_buffer->abbrev_table, Fdowncase (abbrev),
7942b8ae 164 expansion, Qnil, make_number (0));
78ce396a 165 return abbrev;
7942b8ae
RS
166}
167
168DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_symbol, 1, 2, 0,
169 "Return the symbol representing abbrev named ABBREV.\n\
170This symbol's name is ABBREV, but it is not the canonical symbol of that name;\n\
171it is interned in an abbrev-table rather than the normal obarray.\n\
172The value is nil if that abbrev is not defined.\n\
173Optional second arg TABLE is abbrev table to look it up in.\n\
174The default is to try buffer's mode-specific abbrev table, then global table.")
175 (abbrev, table)
176 Lisp_Object abbrev, table;
177{
178 Lisp_Object sym;
179 CHECK_STRING (abbrev, 0);
d427b66a 180 if (!NILP (table))
7942b8ae
RS
181 sym = Fintern_soft (abbrev, table);
182 else
183 {
184 sym = Qnil;
d427b66a 185 if (!NILP (current_buffer->abbrev_table))
7942b8ae 186 sym = Fintern_soft (abbrev, current_buffer->abbrev_table);
d427b66a 187 if (NILP (XSYMBOL (sym)->value))
7942b8ae 188 sym = Qnil;
d427b66a 189 if (NILP (sym))
7942b8ae
RS
190 sym = Fintern_soft (abbrev, Vglobal_abbrev_table);
191 }
d427b66a 192 if (NILP (XSYMBOL (sym)->value)) return Qnil;
7942b8ae
RS
193 return sym;
194}
195
196DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabbrev_expansion, 1, 2, 0,
197 "Return the string that ABBREV expands into in the current buffer.\n\
198Optionally specify an abbrev table as second arg;\n\
199then ABBREV is looked up in that table only.")
200 (abbrev, table)
201 Lisp_Object abbrev, table;
202{
203 Lisp_Object sym;
204 sym = Fabbrev_symbol (abbrev, table);
d427b66a 205 if (NILP (sym)) return sym;
7942b8ae
RS
206 return Fsymbol_value (sym);
207}
208\f
209/* Expand the word before point, if it is an abbrev.
210 Returns 1 if an expansion is done. */
211
212DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_abbrev, 0, 0, "",
213 "Expand the abbrev before point, if there is an abbrev there.\n\
214Effective when explicitly called even when `abbrev-mode' is nil.\n\
215Returns t if expansion took place.")
216 ()
217{
218 register char *buffer, *p;
219 register int wordstart, wordend, idx;
220 int whitecnt;
221 int uccount = 0, lccount = 0;
222 register Lisp_Object sym;
223 Lisp_Object expansion, hook, tem;
ba70da8f
RS
224 int oldmodiff = MODIFF;
225 Lisp_Object value;
7942b8ae 226
d427b66a 227 if (!NILP (Vrun_hooks))
dbd7a969 228 call1 (Vrun_hooks, Qpre_abbrev_expand_hook);
c89475dc
JB
229 /* If the hook changes the buffer, treat that as having "done an
230 expansion". */
ba70da8f 231 value = (MODIFF != oldmodiff ? Qt : Qnil);
dbd7a969 232
dc7e2b30
KH
233 wordstart = 0;
234 if (!(BUFFERP (Vabbrev_start_location_buffer) &&
235 XBUFFER (Vabbrev_start_location_buffer) == current_buffer))
7942b8ae 236 Vabbrev_start_location = Qnil;
d427b66a 237 if (!NILP (Vabbrev_start_location))
7942b8ae
RS
238 {
239 tem = Vabbrev_start_location;
240 CHECK_NUMBER_COERCE_MARKER (tem, 0);
241 wordstart = XINT (tem);
242 Vabbrev_start_location = Qnil;
dc7e2b30
KH
243 if (wordstart < BEGV || wordstart > ZV)
244 wordstart = 0;
245 if (wordstart && wordstart != ZV && FETCH_CHAR (wordstart) == '-')
7942b8ae
RS
246 del_range (wordstart, wordstart + 1);
247 }
dc7e2b30 248 if (!wordstart)
7942b8ae
RS
249 wordstart = scan_words (point, -1);
250
251 if (!wordstart)
ba70da8f 252 return value;
7942b8ae
RS
253
254 wordend = scan_words (wordstart, 1);
255 if (!wordend)
ba70da8f 256 return value;
7942b8ae
RS
257
258 if (wordend > point)
259 wordend = point;
260 whitecnt = point - wordend;
261 if (wordend <= wordstart)
ba70da8f 262 return value;
7942b8ae
RS
263
264 p = buffer = (char *) alloca (wordend - wordstart);
265
2471a281 266 for (idx = wordstart; idx < wordend; idx++)
7942b8ae
RS
267 {
268 register int c = FETCH_CHAR (idx);
269 if (UPPERCASEP (c))
270 c = DOWNCASE (c), uccount++;
271 else if (! NOCASEP (c))
272 lccount++;
273 *p++ = c;
274 }
275
09e82d7c 276 if (VECTORP (current_buffer->abbrev_table))
7942b8ae
RS
277 sym = oblookup (current_buffer->abbrev_table, buffer, p - buffer);
278 else
2a43e2bc 279 XSETFASTINT (sym, 0);
09e82d7c 280 if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value))
7942b8ae 281 sym = oblookup (Vglobal_abbrev_table, buffer, p - buffer);
09e82d7c 282 if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value))
ba70da8f 283 return value;
7942b8ae
RS
284
285 if (INTERACTIVE && !EQ (minibuf_window, selected_window))
286 {
aba686ed
RS
287 /* Add an undo boundary, in case we are doing this for
288 a self-inserting command which has avoided making one so far. */
7942b8ae
RS
289 SET_PT (wordend);
290 Fundo_boundary ();
291 }
292 SET_PT (wordstart);
293 Vlast_abbrev_text
294 = Fbuffer_substring (make_number (wordstart), make_number (wordend));
295 del_range (wordstart, wordend);
296
297 /* Now sym is the abbrev symbol. */
298 Vlast_abbrev = sym;
299 last_abbrev_point = wordstart;
300
09e82d7c 301 if (INTEGERP (XSYMBOL (sym)->plist))
7942b8ae
RS
302 XSETINT (XSYMBOL (sym)->plist,
303 XINT (XSYMBOL (sym)->plist) + 1); /* Increment use count */
304
305 expansion = XSYMBOL (sym)->value;
0c287112 306 insert_from_string (expansion, 0, XSTRING (expansion)->size, 1);
7942b8ae
RS
307 SET_PT (point + whitecnt);
308
309 if (uccount && !lccount)
310 {
311 /* Abbrev was all caps */
312 /* If expansion is multiple words, normally capitalize each word */
313 /* This used to be if (!... && ... >= ...) Fcapitalize; else Fupcase
314 but Megatest 68000 compiler can't handle that */
315 if (!abbrev_all_caps)
316 if (scan_words (point, -1) > scan_words (wordstart, 1))
317 {
4aa6e424
KH
318 Fupcase_initials_region (make_number (wordstart),
319 make_number (point));
7942b8ae
RS
320 goto caped;
321 }
322 /* If expansion is one word, or if user says so, upcase it all. */
323 Fupcase_region (make_number (wordstart), make_number (point));
324 caped: ;
325 }
326 else if (uccount)
327 {
328 /* Abbrev included some caps. Cap first initial of expansion */
7169beb1 329 int pos = wordstart;
4d6cebd8 330
7169beb1
RS
331 /* Find the initial. */
332 while (pos < point
333 && SYNTAX (*BUF_CHAR_ADDRESS (current_buffer, pos)) != Sword)
334 pos++;
4d6cebd8 335
7169beb1
RS
336 /* Change just that. */
337 Fupcase_initials_region (make_number (pos), make_number (pos + 1));
7942b8ae
RS
338 }
339
340 hook = XSYMBOL (sym)->function;
d427b66a 341 if (!NILP (hook))
7942b8ae
RS
342 call0 (hook);
343
344 return Qt;
345}
346
347DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexpand_abbrev, 0, 0, "",
348 "Undo the expansion of the last abbrev that expanded.\n\
349This differs from ordinary undo in that other editing done since then\n\
350is not undone.")
351 ()
352{
353 int opoint = point;
354 int adjust = 0;
355 if (last_abbrev_point < BEGV
356 || last_abbrev_point > ZV)
357 return Qnil;
358 SET_PT (last_abbrev_point);
09e82d7c 359 if (STRINGP (Vlast_abbrev_text))
7942b8ae
RS
360 {
361 /* This isn't correct if Vlast_abbrev->function was used
362 to do the expansion */
363 Lisp_Object val;
4458687c 364 val = XSYMBOL (Vlast_abbrev)->value;
09e82d7c 365 if (!STRINGP (val))
4458687c 366 error ("value of abbrev-symbol must be a string");
7942b8ae
RS
367 adjust = XSTRING (val)->size;
368 del_range (point, point + adjust);
0c287112 369 /* Don't inherit properties here; just copy from old contents. */
7942b8ae 370 insert_from_string (Vlast_abbrev_text, 0,
0c287112 371 XSTRING (Vlast_abbrev_text)->size, 0);
7942b8ae
RS
372 adjust -= XSTRING (Vlast_abbrev_text)->size;
373 Vlast_abbrev_text = Qnil;
374 }
375 SET_PT (last_abbrev_point < opoint ? opoint - adjust : opoint);
376 return Qnil;
377}
378\f
379static
380write_abbrev (sym, stream)
381 Lisp_Object sym, stream;
382{
383 Lisp_Object name;
d427b66a 384 if (NILP (XSYMBOL (sym)->value))
7942b8ae
RS
385 return;
386 insert (" (", 5);
6520d056 387 XSETSTRING (name, XSYMBOL (sym)->name);
7942b8ae
RS
388 Fprin1 (name, stream);
389 insert (" ", 1);
390 Fprin1 (XSYMBOL (sym)->value, stream);
391 insert (" ", 1);
392 Fprin1 (XSYMBOL (sym)->function, stream);
393 insert (" ", 1);
394 Fprin1 (XSYMBOL (sym)->plist, stream);
395 insert (")\n", 2);
396}
397
398static
399describe_abbrev (sym, stream)
400 Lisp_Object sym, stream;
401{
402 Lisp_Object one;
403
d427b66a 404 if (NILP (XSYMBOL (sym)->value))
7942b8ae
RS
405 return;
406 one = make_number (1);
407 Fprin1 (Fsymbol_name (sym), stream);
408 Findent_to (make_number (15), one);
409 Fprin1 (XSYMBOL (sym)->plist, stream);
410 Findent_to (make_number (20), one);
411 Fprin1 (XSYMBOL (sym)->value, stream);
d427b66a 412 if (!NILP (XSYMBOL (sym)->function))
7942b8ae
RS
413 {
414 Findent_to (make_number (45), one);
415 Fprin1 (XSYMBOL (sym)->function, stream);
416 }
417 Fterpri (stream);
418}
419
420DEFUN ("insert-abbrev-table-description",
421 Finsert_abbrev_table_description, Sinsert_abbrev_table_description,
422 1, 2, 0,
423 "Insert before point a full description of abbrev table named NAME.\n\
424NAME is a symbol whose value is an abbrev table.\n\
78ce396a
EN
425If optional 2nd arg READABLE is non-nil, a human-readable description\n\
426is inserted. Otherwise the description is an expression,\n\
7942b8ae
RS
427a call to `define-abbrev-table', which would\n\
428define the abbrev table NAME exactly as it is currently defined.")
429 (name, readable)
430 Lisp_Object name, readable;
431{
432 Lisp_Object table;
433 Lisp_Object stream;
434
435 CHECK_SYMBOL (name, 0);
436 table = Fsymbol_value (name);
437 CHECK_VECTOR (table, 0);
438
6520d056 439 XSETBUFFER (stream, current_buffer);
7942b8ae 440
d427b66a 441 if (!NILP (readable))
7942b8ae
RS
442 {
443 insert_string ("(");
444 Fprin1 (name, stream);
445 insert_string (")\n\n");
446 map_obarray (table, describe_abbrev, stream);
447 insert_string ("\n\n");
448 }
449 else
450 {
451 insert_string ("(define-abbrev-table '");
452 Fprin1 (name, stream);
453 insert_string (" '(\n");
454 map_obarray (table, write_abbrev, stream);
455 insert_string (" ))\n\n");
456 }
457
458 return Qnil;
459}
460\f
461DEFUN ("define-abbrev-table", Fdefine_abbrev_table, Sdefine_abbrev_table,
462 2, 2, 0,
78ce396a 463 "Define TABLENAME (a symbol) as an abbrev table name.\n\
7942b8ae
RS
464Define abbrevs in it according to DEFINITIONS, which is a list of elements\n\
465of the form (ABBREVNAME EXPANSION HOOK USECOUNT).")
b9d613cc
KH
466 (tablename, definitions)
467 Lisp_Object tablename, definitions;
7942b8ae
RS
468{
469 Lisp_Object name, exp, hook, count;
470 Lisp_Object table, elt;
471
78ce396a
EN
472 CHECK_SYMBOL (tablename, 0);
473 table = Fboundp (tablename);
474 if (NILP (table) || (table = Fsymbol_value (tablename), NILP (table)))
7942b8ae
RS
475 {
476 table = Fmake_abbrev_table ();
78ce396a 477 Fset (tablename, table);
b9d613cc 478 Vabbrev_table_name_list = Fcons (tablename, Vabbrev_table_name_list);
7942b8ae
RS
479 }
480 CHECK_VECTOR (table, 0);
481
b9d613cc 482 for (; !NILP (definitions); definitions = Fcdr (definitions))
7942b8ae 483 {
78ce396a 484 elt = Fcar (definitions);
0292bcb1
JB
485 name = Fcar (elt); elt = Fcdr (elt);
486 exp = Fcar (elt); elt = Fcdr (elt);
487 hook = Fcar (elt); elt = Fcdr (elt);
7942b8ae
RS
488 count = Fcar (elt);
489 Fdefine_abbrev (table, name, exp, hook, count);
490 }
491 return Qnil;
492}
493\f
494syms_of_abbrev ()
495{
496 DEFVAR_LISP ("abbrev-table-name-list", &Vabbrev_table_name_list,
497 "List of symbols whose values are abbrev tables.");
498 Vabbrev_table_name_list = Fcons (intern ("fundamental-mode-abbrev-table"),
499 Fcons (intern ("global-abbrev-table"),
500 Qnil));
501
502 DEFVAR_LISP ("global-abbrev-table", &Vglobal_abbrev_table,
503 "The abbrev table whose abbrevs affect all buffers.\n\
504Each buffer may also have a local abbrev table.\n\
505If it does, the local table overrides the global one\n\
506for any particular abbrev defined in both.");
507 Vglobal_abbrev_table = Fmake_abbrev_table ();
508
509 DEFVAR_LISP ("fundamental-mode-abbrev-table", &Vfundamental_mode_abbrev_table,
510 "The abbrev table of mode-specific abbrevs for Fundamental Mode.");
511 Vfundamental_mode_abbrev_table = Fmake_abbrev_table ();
512 current_buffer->abbrev_table = Vfundamental_mode_abbrev_table;
513
514 DEFVAR_LISP ("last-abbrev", &Vlast_abbrev,
515 "The abbrev-symbol of the last abbrev expanded. See `abbrev-symbol'.");
516
517 DEFVAR_LISP ("last-abbrev-text", &Vlast_abbrev_text,
518 "The exact text of the last abbrev expanded.\n\
519nil if the abbrev has already been unexpanded.");
520
521 DEFVAR_INT ("last-abbrev-location", &last_abbrev_point,
522 "The location of the start of the last abbrev expanded.");
523
524 Vlast_abbrev = Qnil;
525 Vlast_abbrev_text = Qnil;
526 last_abbrev_point = 0;
527
528 DEFVAR_LISP ("abbrev-start-location", &Vabbrev_start_location,
529 "Buffer position for `expand-abbrev' to use as the start of the abbrev.\n\
530nil means use the word before point as the abbrev.\n\
531Calling `expand-abbrev' sets this to nil.");
532 Vabbrev_start_location = Qnil;
533
534 DEFVAR_LISP ("abbrev-start-location-buffer", &Vabbrev_start_location_buffer,
535 "Buffer that `abbrev-start-location' has been set for.\n\
536Trying to expand an abbrev in any other buffer clears `abbrev-start-location'.");
537 Vabbrev_start_location_buffer = Qnil;
538
c89475dc 539 DEFVAR_PER_BUFFER ("local-abbrev-table", &current_buffer->abbrev_table, Qnil,
7942b8ae
RS
540 "Local (mode-specific) abbrev table of current buffer.");
541
542 DEFVAR_BOOL ("abbrevs-changed", &abbrevs_changed,
543 "Set non-nil by defining or altering any word abbrevs.\n\
544This causes `save-some-buffers' to offer to save the abbrevs.");
545 abbrevs_changed = 0;
546
547 DEFVAR_BOOL ("abbrev-all-caps", &abbrev_all_caps,
548 "*Set non-nil means expand multi-word abbrevs all caps if abbrev was so.");
549 abbrev_all_caps = 0;
550
dbd7a969
RS
551 DEFVAR_LISP ("pre-abbrev-expand-hook", &Vpre_abbrev_expand_hook,
552 "Function or functions to be called before abbrev expansion is done.\n\
553This is the first thing that `expand-abbrev' does, and so this may change\n\
554the current abbrev table before abbrev lookup happens.");
555 Vpre_abbrev_expand_hook = Qnil;
556 Qpre_abbrev_expand_hook = intern ("pre-abbrev-expand-hook");
557 staticpro (&Qpre_abbrev_expand_hook);
558
7942b8ae
RS
559 defsubr (&Smake_abbrev_table);
560 defsubr (&Sclear_abbrev_table);
561 defsubr (&Sdefine_abbrev);
562 defsubr (&Sdefine_global_abbrev);
563 defsubr (&Sdefine_mode_abbrev);
564 defsubr (&Sabbrev_expansion);
565 defsubr (&Sabbrev_symbol);
566 defsubr (&Sexpand_abbrev);
567 defsubr (&Sunexpand_abbrev);
568 defsubr (&Sinsert_abbrev_table_description);
569 defsubr (&Sdefine_abbrev_table);
570}