src/*.c: Remove unused parameters and other warnings.
[bpt/emacs.git] / lisp / abbrev.el
CommitLineData
c0274f38 1;;; abbrev.el --- abbrev mode commands for Emacs
e2fbf49d 2
73b0cd50 3;; Copyright (C) 1985-1987, 1992, 2001-2011 Free Software Foundation, Inc.
e2fbf49d 4
6228c05b 5;; Maintainer: FSF
f5f727f8 6;; Keywords: abbrev convenience
bd78fa1d 7;; Package: emacs
e9571d2a 8
e2fbf49d
JB
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
e2fbf49d 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
e2fbf49d
JB
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
e2fbf49d 23
e41b2db1
ER
24;;; Commentary:
25
26;; This facility is documented in the Emacs Manual.
27
e047f448
SM
28;; Todo:
29
e047f448
SM
30;; - Cleanup name space.
31
e5167999 32;;; Code:
e2fbf49d 33
e047f448
SM
34(eval-when-compile (require 'cl))
35
36(defgroup abbrev-mode nil
37 "Word abbreviations mode."
38 :link '(custom-manual "(emacs)Abbrevs")
39 :group 'abbrev)
40
2aa0e5bf
SM
41(defcustom abbrev-file-name
42 (locate-user-emacs-file "abbrev_defs" ".abbrev_defs")
790d0270
SM
43 "Default name of file from which to read abbrevs."
44 :initialize 'custom-initialize-delay
2aa0e5bf
SM
45 :type 'file)
46
7cfedc97 47(defcustom only-global-abbrevs nil
e7fdaf63 48 "Non-nil means user plans to use global abbrevs only.
1d1e35a0
RS
49This makes the commands that normally define mode-specific abbrevs
50define global abbrevs instead."
51 :type 'boolean
f5f727f8
DN
52 :group 'abbrev-mode
53 :group 'convenience)
e2fbf49d 54
497afe07 55(define-minor-mode abbrev-mode
38002bff 56 "Toggle Abbrev mode in the current buffer.
4837b516
GM
57With optional argument ARG, turn abbrev mode on if ARG is
58positive, otherwise turn it off. In Abbrev mode, inserting an
9d794026
GM
59abbreviation causes it to expand and be replaced by its expansion."
60 ;; It's defined in C, this stops the d-m-m macro defining it again.
61 :variable abbrev-mode)
1d1e35a0 62
f31b1257 63(put 'abbrev-mode 'safe-local-variable 'booleanp)
1d1e35a0 64
e2fbf49d 65\f
e7fdaf63
JPW
66(defvar edit-abbrevs-map
67 (let ((map (make-sparse-keymap)))
68 (define-key map "\C-x\C-s" 'edit-abbrevs-redefine)
69 (define-key map "\C-c\C-c" 'edit-abbrevs-redefine)
70 map)
38002bff 71 "Keymap used in `edit-abbrevs'.")
e2fbf49d
JB
72
73(defun kill-all-abbrevs ()
74 "Undefine all defined abbrevs."
75 (interactive)
0b281d03
SM
76 (dolist (tablesym abbrev-table-name-list)
77 (clear-abbrev-table (symbol-value tablesym))))
e2fbf49d 78
ad9d51b2
RS
79(defun copy-abbrev-table (table)
80 "Make a new abbrev-table with the same abbrevs as TABLE."
81 (let ((new-table (make-abbrev-table)))
82 (mapatoms
83 (lambda (symbol)
84 (define-abbrev new-table
85 (symbol-name symbol)
86 (symbol-value symbol)
87 (symbol-function symbol)))
88 table)
89 new-table))
90
e2fbf49d
JB
91(defun insert-abbrevs ()
92 "Insert after point a description of all defined abbrevs.
93Mark is set after the inserted text."
94 (interactive)
95 (push-mark
96 (save-excursion
0b281d03
SM
97 (dolist (tablesym abbrev-table-name-list)
98 (insert-abbrev-table-description tablesym t))
71baa28f 99 (point))))
e2fbf49d 100
c88a9944
GM
101(defun list-abbrevs (&optional local)
102 "Display a list of defined abbrevs.
103If LOCAL is non-nil, interactively when invoked with a
104prefix arg, display only local, i.e. mode-specific, abbrevs.
105Otherwise display all abbrevs."
106 (interactive "P")
107 (display-buffer (prepare-abbrev-list-buffer local)))
108
109(defun abbrev-table-name (table)
110 "Value is the name of abbrev table TABLE."
111 (let ((tables abbrev-table-name-list)
112 found)
113 (while (and (not found) tables)
114 (when (eq (symbol-value (car tables)) table)
115 (setq found (car tables)))
116 (setq tables (cdr tables)))
117 found))
7cfedc97 118
c88a9944 119(defun prepare-abbrev-list-buffer (&optional local)
8d4708af
BG
120 (let ((local-table local-abbrev-table))
121 (with-current-buffer (get-buffer-create "*Abbrevs*")
122 (erase-buffer)
123 (if local
124 (insert-abbrev-table-description
125 (abbrev-table-name local-table) t)
126 (dolist (table abbrev-table-name-list)
127 (insert-abbrev-table-description table t)))
128 (goto-char (point-min))
129 (set-buffer-modified-p nil)
130 (edit-abbrevs-mode)
131 (current-buffer))))
e2fbf49d
JB
132
133(defun edit-abbrevs-mode ()
134 "Major mode for editing the list of abbrev definitions.
135\\{edit-abbrevs-map}"
136 (interactive)
1a96d1f3 137 (kill-all-local-variables)
e2fbf49d
JB
138 (setq major-mode 'edit-abbrevs-mode)
139 (setq mode-name "Edit-Abbrevs")
1a96d1f3
LK
140 (use-local-map edit-abbrevs-map)
141 (run-mode-hooks 'edit-abbrevs-mode-hook))
e2fbf49d
JB
142
143(defun edit-abbrevs ()
144 "Alter abbrev definitions by editing a list of them.
145Selects a buffer containing a list of abbrev definitions.
146You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
147according to your editing.
148Buffer contains a header line for each abbrev table,
149 which is the abbrev table name in parentheses.
150This is followed by one line per abbrev in that table:
151NAME USECOUNT EXPANSION HOOK
152where NAME and EXPANSION are strings with quotes,
153USECOUNT is an integer, and HOOK is any valid function
154or may be omitted (it is usually omitted)."
155 (interactive)
156 (switch-to-buffer (prepare-abbrev-list-buffer)))
157
158(defun edit-abbrevs-redefine ()
159 "Redefine abbrevs according to current buffer contents."
160 (interactive)
4cabf12b
RS
161 (save-restriction
162 (widen)
163 (define-abbrevs t)
164 (set-buffer-modified-p nil)))
e2fbf49d
JB
165
166(defun define-abbrevs (&optional arg)
167 "Define abbrevs according to current visible buffer contents.
168See documentation of `edit-abbrevs' for info on the format of the
169text you must have in the buffer.
170With argument, eliminate all abbrev definitions except
171the ones defined from the buffer now."
172 (interactive "P")
173 (if arg (kill-all-abbrevs))
174 (save-excursion
71baa28f
EZ
175 (goto-char (point-min))
176 (while (and (not (eobp)) (re-search-forward "^(" nil t))
177 (let* ((buf (current-buffer))
178 (table (read buf))
179 abbrevs name hook exp count sys)
180 (forward-line 1)
181 (while (progn (forward-line 1)
182 (not (eolp)))
183 (setq name (read buf) count (read buf))
184 (if (equal count '(sys))
185 (setq sys t count (read buf)))
186 (setq exp (read buf))
187 (skip-chars-backward " \t\n\f")
188 (setq hook (if (not (eolp)) (read buf)))
189 (skip-chars-backward " \t\n\f")
190 (setq abbrevs (cons (list name exp hook count sys) abbrevs)))
191 (define-abbrev-table table abbrevs)))))
e2fbf49d
JB
192
193(defun read-abbrev-file (&optional file quietly)
194 "Read abbrev definitions from file written with `write-abbrev-file'.
195Optional argument FILE is the name of the file to read;
196it defaults to the value of `abbrev-file-name'.
d0b6d945 197Optional second argument QUIETLY non-nil means don't display a message."
4cabf12b
RS
198 (interactive
199 (list
200 (read-file-name (format "Read abbrev file (default %s): "
201 abbrev-file-name)
202 nil abbrev-file-name t)))
ec7793c3 203 (load (or file abbrev-file-name) nil quietly)
d0b6d945 204 (setq abbrevs-changed nil))
e2fbf49d
JB
205
206(defun quietly-read-abbrev-file (&optional file)
e7fdaf63 207 "Read abbrev definitions from file written with `write-abbrev-file'.
e2fbf49d
JB
208Optional argument FILE is the name of the file to read;
209it defaults to the value of `abbrev-file-name'.
d0b6d945 210Does not display any message."
71baa28f 211 ;(interactive "fRead abbrev file: ")
e2fbf49d
JB
212 (read-abbrev-file file t))
213
68063965
LT
214(defun write-abbrev-file (&optional file)
215 "Write all user-level abbrev definitions to a file of Lisp code.
216This does not include system abbrevs; it includes only the abbrev tables
217listed in listed in `abbrev-table-name-list'.
e2fbf49d 218The file written can be loaded in another session to define the same abbrevs.
68063965
LT
219The argument FILE is the file name to write. If omitted or nil, the file
220specified in `abbrev-file-name' is used."
e2fbf49d
JB
221 (interactive
222 (list
223 (read-file-name "Write abbrev file: "
224 (file-name-directory (expand-file-name abbrev-file-name))
225 abbrev-file-name)))
e2fbf49d
JB
226 (or (and file (> (length file) 0))
227 (setq file abbrev-file-name))
4b978a67
LL
228 (let ((coding-system-for-write 'utf-8))
229 (with-temp-buffer
71baa28f 230 (dolist (table
4b978a67
LL
231 ;; We sort the table in order to ease the automatic
232 ;; merging of different versions of the user's abbrevs
233 ;; file. This is useful, for example, for when the
234 ;; user keeps their home directory in a revision
235 ;; control system, and is therefore keeping multiple
236 ;; slightly-differing copies loosely synchronized.
237 (sort (copy-sequence abbrev-table-name-list)
238 (lambda (s1 s2)
239 (string< (symbol-name s1)
240 (symbol-name s2)))))
241 (insert-abbrev-table-description table nil))
242 (when (unencodable-char-position (point-min) (point-max) 'utf-8)
243 (setq coding-system-for-write
244 (if (> emacs-major-version 24)
245 'utf-8-emacs
246 ;; For compatibility with Emacs 22 (See Bug#8308)
247 'emacs-mule)))
248 (goto-char (point-min))
249 (insert (format ";;-*-coding: %s;-*-\n" coding-system-for-write))
250 (write-region nil nil file nil 0))))
e2fbf49d
JB
251\f
252(defun add-mode-abbrev (arg)
253 "Define mode-specific abbrev for last word(s) before point.
254Argument is how many words before point form the expansion;
255or zero means the region is the expansion.
256A negative argument means to undefine the specified abbrev.
257Reads the abbreviation in the minibuffer.
258
259Don't use this function in a Lisp program; use `define-abbrev' instead."
260 (interactive "p")
261 (add-abbrev
262 (if only-global-abbrevs
71296446 263 global-abbrev-table
e2fbf49d
JB
264 (or local-abbrev-table
265 (error "No per-mode abbrev table")))
266 "Mode" arg))
267
268(defun add-global-abbrev (arg)
269 "Define global (all modes) abbrev for last word(s) before point.
270The prefix argument specifies the number of words before point that form the
271expansion; or zero means the region is the expansion.
272A negative argument means to undefine the specified abbrev.
273This command uses the minibuffer to read the abbreviation.
274
275Don't use this function in a Lisp program; use `define-abbrev' instead."
276 (interactive "p")
277 (add-abbrev global-abbrev-table "Global" arg))
278
279(defun add-abbrev (table type arg)
280 (let ((exp (and (>= arg 0)
34f3cd03 281 (buffer-substring-no-properties
e2fbf49d
JB
282 (point)
283 (if (= arg 0) (mark)
284 (save-excursion (forward-word (- arg)) (point))))))
285 name)
286 (setq name
287 (read-string (format (if exp "%s abbrev for \"%s\": "
288 "Undefine %s abbrev: ")
289 type exp)))
a0f88464 290 (set-text-properties 0 (length name) nil name)
e2fbf49d
JB
291 (if (or (null exp)
292 (not (abbrev-expansion name table))
293 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
294 name (abbrev-expansion name table))))
295 (define-abbrev table (downcase name) exp))))
7cfedc97 296
e66b273f 297(defun inverse-add-mode-abbrev (n)
e2fbf49d
JB
298 "Define last word before point as a mode-specific abbrev.
299With prefix argument N, defines the Nth word before point.
300This command uses the minibuffer to read the expansion.
301Expands the abbreviation after defining it."
302 (interactive "p")
303 (inverse-add-abbrev
304 (if only-global-abbrevs
7cfedc97 305 global-abbrev-table
e2fbf49d
JB
306 (or local-abbrev-table
307 (error "No per-mode abbrev table")))
e66b273f 308 "Mode" n))
e2fbf49d 309
e66b273f 310(defun inverse-add-global-abbrev (n)
e2fbf49d
JB
311 "Define last word before point as a global (mode-independent) abbrev.
312With prefix argument N, defines the Nth word before point.
313This command uses the minibuffer to read the expansion.
314Expands the abbreviation after defining it."
315 (interactive "p")
e66b273f 316 (inverse-add-abbrev global-abbrev-table "Global" n))
e2fbf49d
JB
317
318(defun inverse-add-abbrev (table type arg)
46684068 319 (let (name exp start end)
e2fbf49d 320 (save-excursion
46684068
GM
321 (forward-word (1+ (- arg)))
322 (setq end (point))
323 (backward-word 1)
324 (setq start (point)
325 name (buffer-substring-no-properties start end)))
326
327 (setq exp (read-string (format "%s expansion for \"%s\": " type name)
328 nil nil nil t))
329 (when (or (not (abbrev-expansion name table))
330 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
331 name (abbrev-expansion name table))))
332 (define-abbrev table (downcase name) exp)
333 (save-excursion
334 (goto-char end)
335 (expand-abbrev)))))
e2fbf49d
JB
336
337(defun abbrev-prefix-mark (&optional arg)
338 "Mark current point as the beginning of an abbrev.
339Abbrev to be expanded starts here rather than at beginning of word.
340This way, you can expand an abbrev with a prefix: insert the prefix,
68063965 341use this command, then insert the abbrev. This command inserts a
29c48340 342temporary hyphen after the prefix (until the intended abbrev
68063965
LT
343expansion occurs).
344If the prefix is itself an abbrev, this command expands it, unless
345ARG is non-nil. Interactively, ARG is the prefix argument."
e2fbf49d
JB
346 (interactive "P")
347 (or arg (expand-abbrev))
348 (setq abbrev-start-location (point-marker)
349 abbrev-start-location-buffer (current-buffer))
350 (insert "-"))
351
352(defun expand-region-abbrevs (start end &optional noquery)
353 "For abbrev occurrence in the region, offer to expand it.
e66b273f
JB
354The user is asked to type `y' or `n' for each occurrence.
355A prefix argument means don't query; expand all abbrevs."
e2fbf49d
JB
356 (interactive "r\nP")
357 (save-excursion
358 (goto-char start)
359 (let ((lim (- (point-max) end))
360 pnt string)
361 (while (and (not (eobp))
362 (progn (forward-word 1)
363 (<= (setq pnt (point)) (- (point-max) lim))))
364 (if (abbrev-expansion
365 (setq string
34f3cd03 366 (buffer-substring-no-properties
e2fbf49d
JB
367 (save-excursion (forward-word -1) (point))
368 pnt)))
369 (if (or noquery (y-or-n-p (format "Expand `%s'? " string)))
370 (expand-abbrev)))))))
c0274f38 371
e047f448
SM
372;;; Abbrev properties.
373
374(defun abbrev-table-get (table prop)
375 "Get the PROP property of abbrev table TABLE."
376 (let ((sym (intern-soft "" table)))
377 (if sym (get sym prop))))
378
379(defun abbrev-table-put (table prop val)
380 "Set the PROP property of abbrev table TABLE to VAL."
381 (let ((sym (intern "" table)))
382 (set sym nil) ; Make sure it won't be confused for an abbrev.
383 (put sym prop val)))
384
79415279
SM
385(defalias 'abbrev-get 'get
386 "Get the property PROP of abbrev ABBREV
387
388\(fn ABBREV PROP)")
389
390(defalias 'abbrev-put 'put
391 "Set the property PROP of abbrev ABREV to value VAL.
392See `define-abbrev' for the effect of some special properties.
393
394\(fn ABBREV PROP VAL)")
e047f448 395
e047f448
SM
396;;; Code that used to be implemented in src/abbrev.c
397
398(defvar abbrev-table-name-list '(fundamental-mode-abbrev-table
399 global-abbrev-table)
400 "List of symbols whose values are abbrev tables.")
401
402(defun make-abbrev-table (&optional props)
403 "Create a new, empty abbrev table object.
da59e7b2 404PROPS is a list of properties."
e047f448
SM
405 ;; The value 59 is an arbitrary prime number.
406 (let ((table (make-vector 59 0)))
407 ;; Each abbrev-table has a `modiff' counter which can be used to detect
408 ;; when an abbreviation was added. An example of use would be to
409 ;; construct :regexp dynamically as the union of all abbrev names, so
410 ;; `modiff' can let us detect that an abbrev was added and hence :regexp
411 ;; needs to be refreshed.
412 ;; The presence of `modiff' entry is also used as a tag indicating this
413 ;; vector is really an abbrev-table.
414 (abbrev-table-put table :abbrev-table-modiff 0)
415 (while (consp props)
416 (abbrev-table-put table (pop props) (pop props)))
417 table))
418
419(defun abbrev-table-p (object)
420 (and (vectorp object)
421 (numberp (abbrev-table-get object :abbrev-table-modiff))))
422
423(defvar global-abbrev-table (make-abbrev-table)
424 "The abbrev table whose abbrevs affect all buffers.
425Each buffer may also have a local abbrev table.
426If it does, the local table overrides the global one
427for any particular abbrev defined in both.")
428
429(defvar abbrev-minor-mode-table-alist nil
430 "Alist of abbrev tables to use for minor modes.
431Each element looks like (VARIABLE . ABBREV-TABLE);
432ABBREV-TABLE is active whenever VARIABLE's value is non-nil.")
433
434(defvar fundamental-mode-abbrev-table
435 (let ((table (make-abbrev-table)))
436 ;; Set local-abbrev-table's default to be fundamental-mode-abbrev-table.
437 (setq-default local-abbrev-table table)
438 table)
439 "The abbrev table of mode-specific abbrevs for Fundamental Mode.")
440
441(defvar abbrevs-changed nil
442 "Set non-nil by defining or altering any word abbrevs.
443This causes `save-some-buffers' to offer to save the abbrevs.")
444
445(defcustom abbrev-all-caps nil
446 "Non-nil means expand multi-word abbrevs all caps if abbrev was so."
447 :type 'boolean
448 :group 'abbrev-mode)
449
450(defvar abbrev-start-location nil
451 "Buffer position for `expand-abbrev' to use as the start of the abbrev.
452When nil, use the word before point as the abbrev.
453Calling `expand-abbrev' sets this to nil.")
454
455(defvar abbrev-start-location-buffer nil
456 "Buffer that `abbrev-start-location' has been set for.
457Trying to expand an abbrev in any other buffer clears `abbrev-start-location'.")
458
459(defvar last-abbrev nil
460 "The abbrev-symbol of the last abbrev expanded. See `abbrev-symbol'.")
461
462(defvar last-abbrev-text nil
463 "The exact text of the last abbrev expanded.
29c48340 464It is nil if the abbrev has already been unexpanded.")
e047f448
SM
465
466(defvar last-abbrev-location 0
467 "The location of the start of the last abbrev expanded.")
468
469;; (defvar local-abbrev-table fundamental-mode-abbrev-table
470;; "Local (mode-specific) abbrev table of current buffer.")
471;; (make-variable-buffer-local 'local-abbrev-table)
472
473(defcustom pre-abbrev-expand-hook nil
474 "Function or functions to be called before abbrev expansion is done.
475This is the first thing that `expand-abbrev' does, and so this may change
476the current abbrev table before abbrev lookup happens."
477 :type 'hook
478 :group 'abbrev-mode)
479(make-obsolete-variable 'pre-abbrev-expand-hook 'abbrev-expand-functions "23.1")
480
481(defun clear-abbrev-table (table)
482 "Undefine all abbrevs in abbrev table TABLE, leaving it empty."
483 (setq abbrevs-changed t)
0b281d03
SM
484 (let* ((sym (intern-soft "" table)))
485 (dotimes (i (length table))
486 (aset table i 0))
487 ;; Preserve the table's properties.
488 (assert sym)
938a9a9e
SM
489 (let ((newsym (intern "" table)))
490 (set newsym nil) ; Make sure it won't be confused for an abbrev.
491 (setplist newsym (symbol-plist sym)))
0b281d03 492 (abbrev-table-put table :abbrev-table-modiff
f13f18d9 493 (1+ (abbrev-table-get table :abbrev-table-modiff))))
ba9db1c5 494 ;; For backward compatibility, always return nil.
f13f18d9 495 nil)
e047f448
SM
496
497(defun define-abbrev (table name expansion &optional hook &rest props)
498 "Define an abbrev in TABLE named NAME, to expand to EXPANSION and call HOOK.
499NAME must be a string, and should be lower-case.
500EXPANSION should usually be a string.
501To undefine an abbrev, define it with EXPANSION = nil.
502If HOOK is non-nil, it should be a function of no arguments;
503it is called after EXPANSION is inserted.
434c0be6
CY
504If EXPANSION is not a string (and not nil), the abbrev is a
505 special one, which does not expand in the usual way but only
506 runs HOOK.
e047f448
SM
507
508PROPS is a property list. The following properties are special:
da59e7b2
SM
509- `:count': the value for the abbrev's usage-count, which is incremented each
510 time the abbrev is used (the default is zero).
79415279 511- `:system': if non-nil, says that this is a \"system\" abbreviation
e047f448 512 which should not be saved in the user's abbreviation file.
79415279 513 Unless `:system' is `force', a system abbreviation will not
e047f448
SM
514 overwrite a non-system abbreviation of the same name.
515- `:case-fixed': non-nil means that abbreviations are looked up without
516 case-folding, and the expansion is not capitalized/upcased.
64f00939 517- `:enable-function': a function of no argument which returns non-nil if the
e047f448
SM
518 abbrev should be used for a particular call of `expand-abbrev'.
519
520An obsolete but still supported calling form is:
521
79415279 522\(define-abbrev TABLE NAME EXPANSION &optional HOOK COUNT SYSTEM)."
e047f448
SM
523 (when (and (consp props) (or (null (car props)) (numberp (car props))))
524 ;; Old-style calling convention.
79415279
SM
525 (setq props (list* :count (car props)
526 (if (cadr props) (list :system (cadr props))))))
527 (unless (plist-get props :count)
528 (setq props (plist-put props :count 0)))
529 (let ((system-flag (plist-get props :system))
e047f448
SM
530 (sym (intern name table)))
531 ;; Don't override a prior user-defined abbrev with a system abbrev,
532 ;; unless system-flag is `force'.
533 (unless (and (not (memq system-flag '(nil force)))
534 (boundp sym) (symbol-value sym)
79415279 535 (not (abbrev-get sym :system)))
e047f448
SM
536 (unless (or system-flag
537 (and (boundp sym) (fboundp sym)
538 ;; load-file-name
539 (equal (symbol-value sym) expansion)
540 (equal (symbol-function sym) hook)))
541 (setq abbrevs-changed t))
542 (set sym expansion)
543 (fset sym hook)
79415279
SM
544 (setplist sym
545 ;; Don't store the `force' value of `system-flag' into
546 ;; the :system property.
547 (if (eq 'force system-flag) (plist-put props :system t) props))
e047f448
SM
548 (abbrev-table-put table :abbrev-table-modiff
549 (1+ (abbrev-table-get table :abbrev-table-modiff))))
550 name))
551
552(defun abbrev--check-chars (abbrev global)
553 "Check if the characters in ABBREV have word syntax in either the
554current (if global is nil) or standard syntax table."
555 (with-syntax-table
556 (cond ((null global) (standard-syntax-table))
557 ;; ((syntax-table-p global) global)
558 (t (syntax-table)))
559 (when (string-match "\\W" abbrev)
560 (let ((badchars ())
561 (pos 0))
562 (while (string-match "\\W" abbrev pos)
563 (pushnew (aref abbrev (match-beginning 0)) badchars)
564 (setq pos (1+ pos)))
565 (error "Some abbrev characters (%s) are not word constituents %s"
566 (apply 'string (nreverse badchars))
567 (if global "in the standard syntax" "in this mode"))))))
568
569(defun define-global-abbrev (abbrev expansion)
570 "Define ABBREV as a global abbreviation for EXPANSION.
571The characters in ABBREV must all be word constituents in the standard
572syntax table."
573 (interactive "sDefine global abbrev: \nsExpansion for %s: ")
574 (abbrev--check-chars abbrev 'global)
575 (define-abbrev global-abbrev-table (downcase abbrev) expansion))
576
577(defun define-mode-abbrev (abbrev expansion)
578 "Define ABBREV as a mode-specific abbreviation for EXPANSION.
579The characters in ABBREV must all be word-constituents in the current mode."
580 (interactive "sDefine mode abbrev: \nsExpansion for %s: ")
581 (unless local-abbrev-table
582 (error "Major mode has no abbrev table"))
583 (abbrev--check-chars abbrev nil)
584 (define-abbrev local-abbrev-table (downcase abbrev) expansion))
585
586(defun abbrev--active-tables (&optional tables)
587 "Return the list of abbrev tables currently active.
588TABLES if non-nil overrides the usual rules. It can hold
589either a single abbrev table or a list of abbrev tables."
590 ;; We could just remove the `tables' arg and let callers use
591 ;; (or table (abbrev--active-tables)) but then they'd have to be careful
592 ;; to treat the distinction between a single table and a list of tables.
593 (cond
594 ((consp tables) tables)
595 ((vectorp tables) (list tables))
596 (t
597 (let ((tables (if (listp local-abbrev-table)
598 (append local-abbrev-table
599 (list global-abbrev-table))
600 (list local-abbrev-table global-abbrev-table))))
601 ;; Add the minor-mode abbrev tables.
602 (dolist (x abbrev-minor-mode-table-alist)
603 (when (and (symbolp (car x)) (boundp (car x)) (symbol-value (car x)))
604 (setq tables
605 (if (listp (cdr x))
606 (append (cdr x) tables) (cons (cdr x) tables)))))
607 tables))))
f57a9512 608
e047f448
SM
609
610(defun abbrev-symbol (abbrev &optional table)
611 "Return the symbol representing abbrev named ABBREV.
612This symbol's name is ABBREV, but it is not the canonical symbol of that name;
613it is interned in an abbrev-table rather than the normal obarray.
614The value is nil if that abbrev is not defined.
615Optional second arg TABLE is abbrev table to look it up in.
616The default is to try buffer's mode-specific abbrev table, then global table."
617 (let ((tables (abbrev--active-tables table))
618 sym)
619 (while (and tables (not (symbol-value sym)))
2b86bfb1
SM
620 (let* ((table (pop tables))
621 (case-fold (not (abbrev-table-get table :case-fixed))))
e047f448
SM
622 (setq tables (append (abbrev-table-get table :parents) tables))
623 ;; In case the table doesn't set :case-fixed but some of the
624 ;; abbrevs do, we have to be careful.
625 (setq sym
626 ;; First try without case-folding.
627 (or (intern-soft abbrev table)
628 (when case-fold
629 ;; We didn't find any abbrev, try case-folding.
630 (let ((sym (intern-soft (downcase abbrev) table)))
631 ;; Only use it if it doesn't require :case-fixed.
632 (and sym (not (abbrev-get sym :case-fixed))
633 sym)))))))
634 (if (symbol-value sym)
635 sym)))
f57a9512 636
e047f448
SM
637
638(defun abbrev-expansion (abbrev &optional table)
639 "Return the string that ABBREV expands into in the current buffer.
640Optionally specify an abbrev table as second arg;
641then ABBREV is looked up in that table only."
642 (symbol-value (abbrev-symbol abbrev table)))
643
644
645(defun abbrev--before-point ()
646 "Try and find an abbrev before point. Return it if found, nil otherwise."
647 (unless (eq abbrev-start-location-buffer (current-buffer))
648 (setq abbrev-start-location nil))
649
650 (let ((tables (abbrev--active-tables))
651 (pos (point))
652 start end name res)
653
654 (if abbrev-start-location
655 (progn
656 (setq start abbrev-start-location)
657 (setq abbrev-start-location nil)
658 ;; Remove the hyphen inserted by `abbrev-prefix-mark'.
659 (if (and (< start (point-max))
660 (eq (char-after start) ?-))
661 (delete-region start (1+ start)))
662 (skip-syntax-backward " ")
663 (setq end (point))
2b86bfb1
SM
664 (when (> end start)
665 (setq name (buffer-substring start end))
666 (goto-char pos) ; Restore point.
667 (list (abbrev-symbol name tables) name start end)))
f57a9512 668
e047f448
SM
669 (while (and tables (not (car res)))
670 (let* ((table (pop tables))
671 (enable-fun (abbrev-table-get table :enable-function)))
672 (setq tables (append (abbrev-table-get table :parents) tables))
673 (setq res
674 (and (or (not enable-fun) (funcall enable-fun))
fe4346f0
SM
675 (let ((re (abbrev-table-get table :regexp)))
676 (if (null re)
677 ;; We used to default `re' to "\\<\\(\\w+\\)\\W*"
678 ;; but when words-include-escapes is set, that
679 ;; is not right and fixing it is boring.
680 (let ((lim (point)))
681 (backward-word 1)
682 (setq start (point))
683 (forward-word 1)
684 (setq end (min (point) lim)))
685 (when (looking-back re (line-beginning-position))
686 (setq start (match-beginning 1))
687 (setq end (match-end 1)))))
79415279
SM
688 (setq name (buffer-substring start end))
689 (let ((abbrev (abbrev-symbol name table)))
690 (when abbrev
691 (setq enable-fun (abbrev-get abbrev :enable-function))
692 (and (or (not enable-fun) (funcall enable-fun))
693 ;; This will also look it up in parent tables.
694 ;; This is not on purpose, but it seems harmless.
695 (list abbrev name start end))))))
e047f448
SM
696 ;; Restore point.
697 (goto-char pos)))
698 res)))
699
a3709a8c
SM
700(defun abbrev-insert (abbrev &optional name wordstart wordend)
701 "Insert abbrev ABBREV at point.
702If non-nil, NAME is the name by which this abbrev was found.
703If non-nil, WORDSTART is the place where to insert the abbrev.
78e4a31a 704If WORDEND is non-nil, the abbrev replaces the previous text between
a3709a8c
SM
705WORDSTART and WORDEND.
706Return ABBREV if the expansion should be considered as having taken place."
707 (unless name (setq name (symbol-name abbrev)))
708 (unless wordstart (setq wordstart (point)))
709 (unless wordend (setq wordend wordstart))
710 ;; Increment use count.
711 (abbrev-put abbrev :count (1+ (abbrev-get abbrev :count)))
712 (let ((value abbrev))
713 ;; If this abbrev has an expansion, delete the abbrev
714 ;; and insert the expansion.
715 (when (stringp (symbol-value abbrev))
716 (goto-char wordstart)
717 ;; Insert at beginning so that markers at the end (e.g. point)
718 ;; are preserved.
719 (insert (symbol-value abbrev))
720 (delete-char (- wordend wordstart))
721 (let ((case-fold-search nil))
722 ;; If the abbrev's name is different from the buffer text (the
723 ;; only difference should be capitalization), then we may want
724 ;; to adjust the capitalization of the expansion.
725 (when (and (not (equal name (symbol-name abbrev)))
726 (string-match "[[:upper:]]" name))
727 (if (not (string-match "[[:lower:]]" name))
728 ;; Abbrev was all caps. If expansion is multiple words,
729 ;; normally capitalize each word.
730 (if (and (not abbrev-all-caps)
731 (save-excursion
732 (> (progn (backward-word 1) (point))
733 (progn (goto-char wordstart)
734 (forward-word 1) (point)))))
735 (upcase-initials-region wordstart (point))
736 (upcase-region wordstart (point)))
737 ;; Abbrev included some caps. Cap first initial of expansion.
738 (let ((end (point)))
739 ;; Find the initial.
740 (goto-char wordstart)
741 (skip-syntax-forward "^w" (1- end))
742 ;; Change just that.
743 (upcase-initials-region (point) (1+ (point)))
744 (goto-char end))))))
745 ;; Now point is at the end of the expansion and the beginning is
746 ;; in last-abbrev-location.
747 (when (symbol-function abbrev)
748 (let* ((hook (symbol-function abbrev))
749 (expanded
750 ;; If the abbrev has a hook function, run it.
751 (funcall hook)))
752 ;; In addition, if the hook function is a symbol with
753 ;; a non-nil `no-self-insert' property, let the value it
754 ;; returned specify whether we consider that an expansion took
755 ;; place. If it returns nil, no expansion has been done.
756 (if (and (symbolp hook)
757 (null expanded)
758 (get hook 'no-self-insert))
759 (setq value nil))))
760 value))
761
e047f448
SM
762(defvar abbrev-expand-functions nil
763 "Wrapper hook around `expand-abbrev'.
764The functions on this special hook are called with one argument:
765a function that performs the abbrev expansion. It should return
766the abbrev symbol if expansion took place.")
767
768(defun expand-abbrev ()
769 "Expand the abbrev before point, if there is an abbrev there.
770Effective when explicitly called even when `abbrev-mode' is nil.
771Returns the abbrev symbol, if expansion took place."
772 (interactive)
773 (run-hooks 'pre-abbrev-expand-hook)
a185548b 774 (with-wrapper-hook abbrev-expand-functions ()
e047f448
SM
775 (destructuring-bind (&optional sym name wordstart wordend)
776 (abbrev--before-point)
777 (when sym
778 (let ((value sym))
779 (unless (or ;; executing-kbd-macro
780 noninteractive
781 (window-minibuffer-p (selected-window)))
782 ;; Add an undo boundary, in case we are doing this for
783 ;; a self-inserting command which has avoided making one so far.
784 (undo-boundary))
785 ;; Now sym is the abbrev symbol.
786 (setq last-abbrev-text name)
787 (setq last-abbrev sym)
788 (setq last-abbrev-location wordstart)
e047f448
SM
789 ;; If this abbrev has an expansion, delete the abbrev
790 ;; and insert the expansion.
a3709a8c 791 (abbrev-insert sym name wordstart wordend))))))
e047f448
SM
792
793(defun unexpand-abbrev ()
794 "Undo the expansion of the last abbrev that expanded.
795This differs from ordinary undo in that other editing done since then
796is not undone."
797 (interactive)
798 (save-excursion
799 (unless (or (< last-abbrev-location (point-min))
800 (> last-abbrev-location (point-max)))
801 (goto-char last-abbrev-location)
802 (when (stringp last-abbrev-text)
803 ;; This isn't correct if last-abbrev's hook was used
804 ;; to do the expansion.
805 (let ((val (symbol-value last-abbrev)))
806 (unless (stringp val)
f68cfe84 807 (error "Value of abbrev-symbol must be a string"))
e047f448
SM
808 ;; Don't inherit properties here; just copy from old contents.
809 (insert last-abbrev-text)
f68cfe84
SM
810 ;; Delete after inserting, to better preserve markers.
811 (delete-region (point) (+ (point) (length val)))
e047f448
SM
812 (setq last-abbrev-text nil))))))
813
814(defun abbrev--write (sym)
815 "Write the abbrev in a `read'able form.
816Only writes the non-system abbrevs.
817Presumes that `standard-output' points to `current-buffer'."
79415279 818 (unless (or (null (symbol-value sym)) (abbrev-get sym :system))
e047f448 819 (insert " (")
d548715c 820 (prin1 (symbol-name sym))
e047f448
SM
821 (insert " ")
822 (prin1 (symbol-value sym))
823 (insert " ")
824 (prin1 (symbol-function sym))
825 (insert " ")
79415279 826 (prin1 (abbrev-get sym :count))
e047f448
SM
827 (insert ")\n")))
828
829(defun abbrev--describe (sym)
830 (when (symbol-value sym)
831 (prin1 (symbol-name sym))
79415279 832 (if (null (abbrev-get sym :system))
e047f448
SM
833 (indent-to 15 1)
834 (insert " (sys)")
835 (indent-to 20 1))
79415279 836 (prin1 (abbrev-get sym :count))
e047f448
SM
837 (indent-to 20 1)
838 (prin1 (symbol-value sym))
839 (when (symbol-function sym)
840 (indent-to 45 1)
841 (prin1 (symbol-function sym)))
842 (terpri)))
843
844(defun insert-abbrev-table-description (name &optional readable)
845 "Insert before point a full description of abbrev table named NAME.
846NAME is a symbol whose value is an abbrev table.
847If optional 2nd arg READABLE is non-nil, a human-readable description
848is inserted. Otherwise the description is an expression,
849a call to `define-abbrev-table', which would
850define the abbrev table NAME exactly as it is currently defined.
851
852Abbrevs marked as \"system abbrevs\" are omitted."
853 (let ((table (symbol-value name))
854 (symbols ()))
855 (mapatoms (lambda (sym) (if (symbol-value sym) (push sym symbols))) table)
856 (setq symbols (sort symbols 'string-lessp))
857 (let ((standard-output (current-buffer)))
858 (if readable
859 (progn
860 (insert "(")
861 (prin1 name)
862 (insert ")\n\n")
863 (mapc 'abbrev--describe symbols)
864 (insert "\n\n"))
865 (insert "(define-abbrev-table '")
866 (prin1 name)
42da39c1
CY
867 (if (null symbols)
868 (insert " '())\n\n")
869 (insert "\n '(\n")
870 (mapc 'abbrev--write symbols)
871 (insert " ))\n\n")))
e047f448
SM
872 nil)))
873
e1ca6a5b 874(put 'define-abbrev-table 'doc-string-elt 3)
e047f448
SM
875(defun define-abbrev-table (tablename definitions
876 &optional docstring &rest props)
877 "Define TABLENAME (a symbol) as an abbrev table name.
878Define abbrevs in it according to DEFINITIONS, which is a list of elements
da59e7b2 879of the form (ABBREVNAME EXPANSION ...) that are passed to `define-abbrev'.
e047f448
SM
880PROPS is a property list to apply to the table.
881Properties with special meaning:
882- `:parents' contains a list of abbrev tables from which this table inherits
883 abbreviations.
884- `:case-fixed' non-nil means that abbreviations are looked up without
885 case-folding, and the expansion is not capitalized/upcased.
f57a9512 886- `:regexp' describes the form of abbrevs. It defaults to \\=\\<\\(\\w+\\)\\W* which
e047f448
SM
887 means that an abbrev can only be a single word. The submatch 1 is treated
888 as the potential name of an abbrev.
889- `:enable-function' can be set to a function of no argument which returns
d239a055
JB
890 non-nil if and only if the abbrevs in this table should be used for this
891 instance of `expand-abbrev'."
4eebd7fe
SM
892 ;; We used to manually add the docstring, but we also want to record this
893 ;; location as the definition of the variable (in load-history), so we may
894 ;; as well just use `defvar'.
895 (eval `(defvar ,tablename nil ,@(if (stringp docstring) (list docstring))))
e047f448
SM
896 (let ((table (if (boundp tablename) (symbol-value tablename))))
897 (unless table
9e2a4d4d 898 (setq table (make-abbrev-table))
e047f448
SM
899 (set tablename table)
900 (push tablename abbrev-table-name-list))
9e2a4d4d
SM
901 ;; We used to just pass them to `make-abbrev-table', but that fails
902 ;; if the table was pre-existing as is the case if it was created by
903 ;; loading the user's abbrev file.
904 (while (consp props)
905 (abbrev-table-put table (pop props) (pop props)))
e047f448
SM
906 (dolist (elt definitions)
907 (apply 'define-abbrev table elt))))
908
a3709a8c
SM
909(defun abbrev-table-menu (table &optional prompt sortfun)
910 "Return a menu that shows all abbrevs in TABLE.
911Selecting an entry runs `abbrev-insert'.
912PROMPT is the prompt to use for the keymap.
913SORTFUN is passed to `sort' to change the default ordering."
914 (unless sortfun (setq sortfun 'string-lessp))
915 (let ((entries ()))
916 (mapatoms (lambda (abbrev)
917 (when (symbol-value abbrev)
918 (let ((name (symbol-name abbrev)))
919 (push `(,(intern name) menu-item ,name
920 (lambda () (interactive)
921 (abbrev-insert ',abbrev)))
922 entries))))
923 table)
924 (nconc (make-sparse-keymap prompt)
925 (sort entries (lambda (x y)
926 (funcall sortfun (nth 2 x) (nth 2 y)))))))
927
c06d4c1f
RS
928(provide 'abbrev)
929
c0274f38 930;;; abbrev.el ends here