38412
|
1 ;;; mailabbrev.el --- abbrev-expansion of mail aliases
|
1148
|
2
|
43136
|
3 ;; Copyright (C) 1985, 86, 87, 92, 93, 96, 1997, 2000, 2002
|
28803
|
4 ;; Free Software Foundation, Inc.
|
1148
|
5
|
27589
|
6 ;; Author: Jamie Zawinski <jwz@lucid.com>, now <jwz@jwz.org>
|
|
7 ;; Maintainer: FSF
|
1148
|
8 ;; Created: 19 Oct 90
|
|
9 ;; Keywords: mail
|
|
10
|
14169
|
11 ;; This file is part of GNU Emacs.
|
459
|
12
|
14169
|
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
14 ;; it under the terms of the GNU General Public License as published by
|
|
15 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
16 ;; any later version.
|
459
|
17
|
14169
|
18 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21 ;; GNU General Public License for more details.
|
459
|
22
|
14169
|
23 ;; You should have received a copy of the GNU General Public License
|
|
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
26 ;; Boston, MA 02111-1307, USA.
|
459
|
27
|
1148
|
28 ;;; Commentary:
|
|
29
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
30 ;; This file ensures that, when the point is in a To:, CC:, BCC:, or From:
|
14169
|
31 ;; field, word-abbrevs are defined for each of your mail aliases. These
|
|
32 ;; aliases will be defined from your .mailrc file (or the file specified by
|
|
33 ;; the MAILRC environment variable) if it exists. Your mail aliases will
|
|
34 ;; expand any time you type a word-delimiter at the end of an abbreviation.
|
|
35 ;;
|
|
36 ;; What you see is what you get: if mailabbrev is in use when you type
|
|
37 ;; a name, and the name does not expand, you know it is not an abbreviation.
|
|
38 ;; However, if you yank abbreviations into the headers
|
|
39 ;; in a way that bypasses the check for abbreviations,
|
|
40 ;; they are expanded (but not visibly) when you send the message.
|
|
41 ;;
|
|
42 ;; Your mail alias abbrevs will be in effect only when the point is in an
|
|
43 ;; appropriate header field. When in the body of the message, or other
|
|
44 ;; header fields, the mail aliases will not expand. Rather, the normal
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
45 ;; mode-specific abbrev table (mail-mode-abbrev-table) will be used if
|
14169
|
46 ;; defined. So if you use mail-mode specific abbrevs, this code will not
|
|
47 ;; adversely affect you. You can control which header fields the abbrevs
|
|
48 ;; are used in by changing the variable mail-abbrev-mode-regexp.
|
|
49 ;;
|
|
50 ;; If auto-fill mode is on, abbrevs will wrap at commas instead of at word
|
|
51 ;; boundaries; also, header continuation-lines will be properly indented.
|
|
52 ;;
|
28803
|
53 ;; You can also insert a mail alias with mail-abbrev-insert-alias
|
14169
|
54 ;; (bound to C-c C-a), which prompts you for an alias (with completion)
|
|
55 ;; and inserts its expansion at point.
|
|
56 ;;
|
|
57 ;; This file fixes a bug in the old system which prohibited your .mailrc
|
|
58 ;; file from having lines like
|
|
59 ;;
|
|
60 ;; alias someone "John Doe <doe@quux.com>"
|
|
61 ;;
|
|
62 ;; That is, if you want an address to have embedded spaces, simply surround it
|
|
63 ;; with double-quotes. This is necessary because the format of the .mailrc
|
|
64 ;; file bogusly uses spaces as address delimiters. The following line defines
|
|
65 ;; an alias which expands to three addresses:
|
|
66 ;;
|
|
67 ;; alias foobar addr-1 addr-2 "address three <addr-3>"
|
|
68 ;;
|
|
69 ;; (This is bogus because mail-delivery programs want commas, not spaces,
|
|
70 ;; but that's what the file format is, so we have to live with it.)
|
|
71 ;;
|
|
72 ;; If you like, you can call the function define-mail-abbrev to define your
|
|
73 ;; mail aliases instead of using a .mailrc file. When you call it in this
|
|
74 ;; way, addresses are separated by commas.
|
|
75 ;;
|
|
76 ;; CAVEAT: This works on most Sun systems; I have been told that some versions
|
|
77 ;; of /bin/mail do not understand double-quotes in the .mailrc file. So you
|
|
78 ;; should make sure your version does before including verbose addresses like
|
|
79 ;; this. One solution to this, if you are on a system whose /bin/mail doesn't
|
|
80 ;; work that way, (and you still want to be able to /bin/mail to send mail in
|
|
81 ;; addition to emacs) is to define minimal aliases (without full names) in
|
|
82 ;; your .mailrc file, and use define-mail-abbrev to redefine them when sending
|
|
83 ;; mail from emacs; this way, mail sent from /bin/mail will work, and mail
|
|
84 ;; sent from emacs will be pretty.
|
|
85 ;;
|
|
86 ;; Aliases in the mailrc file may be nested. If you define aliases like
|
|
87 ;; alias group1 fred ethel
|
|
88 ;; alias group2 larry curly moe
|
|
89 ;; alias everybody group1 group2
|
|
90 ;; Then when you type "everybody" on the To: line, it will be expanded to
|
|
91 ;; fred, ethyl, larry, curly, moe
|
|
92 ;;
|
|
93 ;; Aliases may also contain forward references; the alias of "everybody" can
|
|
94 ;; precede the aliases of "group1" and "group2".
|
|
95 ;;
|
|
96 ;; This code also understands the "source" .mailrc command, for reading
|
|
97 ;; aliases from some other file as well.
|
|
98 ;;
|
|
99 ;; Aliases may contain hyphens, as in "alias foo-bar foo@bar"; word-abbrevs
|
|
100 ;; normally cannot contain hyphens, but this code works around that for the
|
|
101 ;; specific case of mail-alias word-abbrevs.
|
|
102 ;;
|
|
103 ;; To read in the contents of another .mailrc-type file from emacs, use the
|
|
104 ;; command Meta-X merge-mail-abbrevs. The rebuild-mail-abbrevs command is
|
|
105 ;; similar, but will delete existing aliases first.
|
|
106 ;;
|
|
107 ;; If you would like your aliases to be expanded when you type M-> or ^N to
|
|
108 ;; move out of the mail-header into the message body (instead of having to
|
|
109 ;; type SPC at the end of the abbrev before moving away) then you can do
|
|
110 ;;
|
|
111 ;; (add-hook
|
34921
|
112 ;; 'mail-mode-hook
|
30888
|
113 ;; (lambda ()
|
14169
|
114 ;; (substitute-key-definition 'next-line 'mail-abbrev-next-line
|
|
115 ;; mail-mode-map global-map)
|
|
116 ;; (substitute-key-definition 'end-of-buffer 'mail-abbrev-end-of-buffer
|
|
117 ;; mail-mode-map global-map)))
|
|
118 ;;
|
|
119 ;; If you want multiple addresses separated by a string other than ", " then
|
|
120 ;; you can set the variable mail-alias-separator-string to it. This has to
|
|
121 ;; be a comma bracketed by whitespace if you want any kind of reasonable
|
|
122 ;; behaviour.
|
|
123 ;;
|
|
124 ;; Thanks to Harald Hanche-Olsen, Michael Ernst, David Loeffler, and
|
|
125 ;; Noah Friedman for suggestions and bug reports.
|
1432
|
126
|
34921
|
127 ;; To use this package, do (add-hook 'mail-mode-hook 'mail-abbrevs-setup).
|
459
|
128
|
1148
|
129 ;;; Code:
|
|
130
|
43136
|
131 (eval-when-compile
|
|
132 (require 'sendmail))
|
459
|
133
|
20097
|
134 (defgroup mail-abbrev nil
|
|
135 "Expand mail aliases as abbrevs, in certain mail headers."
|
|
136 :group 'abbrev-mode)
|
|
137
|
|
138 (defcustom mail-abbrevs-mode nil
|
|
139 "*Non-nil means expand mail aliases as abbrevs, in certain message headers."
|
|
140 :type 'boolean
|
|
141 :group 'mail-abbrev
|
|
142 :require 'mailabbrev
|
30888
|
143 :set (lambda (symbol value)
|
|
144 (setq mail-abbrevs-mode value)
|
|
145 (if value (mail-abbrevs-enable) (mail-abbrevs-disable)))
|
21670
|
146 :initialize 'custom-initialize-default
|
|
147 :version "20.3")
|
20097
|
148
|
|
149 (defcustom mail-abbrevs-only nil
|
|
150 "*Non-nil means only mail abbrevs should expand automatically.
|
|
151 Other abbrevs expand only when you explicitly use `expand-abbrev'."
|
|
152 :type 'boolean
|
|
153 :group 'mail-abbrev)
|
|
154
|
459
|
155 ;; originally defined in sendmail.el - used to be an alist, now is a table.
|
1432
|
156 (defvar mail-abbrevs nil
|
598
|
157 "Word-abbrev table of mail address aliases.
|
459
|
158 If this is nil, it means the aliases have not yet been initialized and
|
|
159 should be read from the .mailrc file. (This is distinct from there being
|
|
160 no aliases, which is represented by this being a table with no entries.)")
|
|
161
|
14800
|
162 (defvar mail-abbrev-modtime nil
|
|
163 "The modification time of your mail alias file when it was last examined.")
|
|
164
|
|
165 (defun mail-abbrevs-sync-aliases ()
|
|
166 (if (file-exists-p mail-personal-alias-file)
|
|
167 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
|
|
168 (if (not (equal mail-abbrev-modtime modtime))
|
|
169 (progn
|
|
170 (setq mail-abbrev-modtime modtime)
|
|
171 (build-mail-abbrevs))))))
|
|
172
|
474
|
173 ;;;###autoload
|
1432
|
174 (defun mail-abbrevs-setup ()
|
14761
|
175 "Initialize use of the `mailabbrev' package."
|
1432
|
176 (if (and (not (vectorp mail-abbrevs))
|
10328
|
177 (file-exists-p mail-personal-alias-file))
|
14800
|
178 (progn
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
179 (setq mail-abbrev-modtime
|
14800
|
180 (nth 5 (file-attributes mail-personal-alias-file)))
|
|
181 (build-mail-abbrevs)))
|
|
182 (mail-abbrevs-sync-aliases)
|
11059
|
183 (add-hook 'pre-abbrev-expand-hook 'sendmail-pre-abbrev-expand-hook
|
|
184 nil t)
|
459
|
185 (abbrev-mode 1))
|
|
186
|
20097
|
187 (defun mail-abbrevs-enable ()
|
34921
|
188 (add-hook 'mail-mode-hook 'mail-abbrevs-setup))
|
20097
|
189
|
|
190 (defun mail-abbrevs-disable ()
|
|
191 "Turn off use of the `mailabbrev' package."
|
34921
|
192 (remove-hook 'mail-mode-hook 'mail-abbrevs-setup)
|
20097
|
193 (abbrev-mode (if (default-value 'abbrev-mode) 1 -1)))
|
|
194
|
598
|
195 ;;;###autoload
|
1432
|
196 (defun build-mail-abbrevs (&optional file recursivep)
|
10328
|
197 "Read mail aliases from personal mail alias file and set `mail-abbrevs'.
|
|
198 By default this is the file specified by `mail-personal-alias-file'."
|
|
199 (setq file (expand-file-name (or file mail-personal-alias-file)))
|
1432
|
200 (if (vectorp mail-abbrevs)
|
459
|
201 nil
|
1432
|
202 (setq mail-abbrevs nil)
|
|
203 (define-abbrev-table 'mail-abbrevs '()))
|
606
|
204 (message "Parsing %s..." file)
|
459
|
205 (let ((buffer nil)
|
|
206 (obuf (current-buffer)))
|
|
207 (unwind-protect
|
|
208 (progn
|
20219
|
209 (setq buffer (generate-new-buffer " mailrc"))
|
598
|
210 (buffer-disable-undo buffer)
|
459
|
211 (set-buffer buffer)
|
|
212 (cond ((get-file-buffer file)
|
|
213 (insert (save-excursion
|
|
214 (set-buffer (get-file-buffer file))
|
|
215 (buffer-substring (point-min) (point-max)))))
|
|
216 ((not (file-exists-p file)))
|
|
217 (t (insert-file-contents file)))
|
|
218 ;; Don't lose if no final newline.
|
|
219 (goto-char (point-max))
|
|
220 (or (eq (preceding-char) ?\n) (newline))
|
|
221 (goto-char (point-min))
|
|
222 ;; Delete comments from the file
|
|
223 (while (search-forward "# " nil t)
|
|
224 (let ((p (- (point) 2)))
|
|
225 (end-of-line)
|
|
226 (delete-region p (point))))
|
|
227 (goto-char (point-min))
|
|
228 ;; handle "\\\n" continuation lines
|
|
229 (while (not (eobp))
|
|
230 (end-of-line)
|
|
231 (if (= (preceding-char) ?\\)
|
|
232 (progn (delete-char -1) (delete-char 1) (insert ?\ ))
|
|
233 (forward-char 1)))
|
|
234 (goto-char (point-min))
|
|
235 (while (re-search-forward
|
907
|
236 "^\\(a\\(lias\\)?\\|g\\(roup\\)?\\|source\\)[ \t]+" nil t)
|
459
|
237 (beginning-of-line)
|
|
238 (if (looking-at "source[ \t]+\\([^ \t\n]+\\)")
|
|
239 (progn
|
|
240 (end-of-line)
|
1432
|
241 (build-mail-abbrevs
|
3945
7a8d0a08eac7
(build-mail-abbrevs): Do substitute-in-file-name on the abbrev, for `source'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
242 (substitute-in-file-name
|
7939
338a91733ff9
(build-mail-abbrevs): Pass a recursivep argument in recursive call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
243 (buffer-substring (match-beginning 1) (match-end 1)))
|
338a91733ff9
(build-mail-abbrevs): Pass a recursivep argument in recursive call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
244 t))
|
459
|
245 (re-search-forward "[ \t]+\\([^ \t\n]+\\)")
|
|
246 (let* ((name (buffer-substring
|
|
247 (match-beginning 1) (match-end 1)))
|
|
248 (start (progn (skip-chars-forward " \t") (point))))
|
|
249 (end-of-line)
|
|
250 ; (message "** %s \"%s\"" name (buffer-substring start (point)))(sit-for 1)
|
3742
|
251 (define-mail-abbrev
|
459
|
252 name
|
3742
|
253 (buffer-substring start (point))
|
|
254 t))))
|
459
|
255 ;; Resolve forward references in .mailrc file.
|
|
256 ;; This would happen automatically before the first abbrev was
|
|
257 ;; expanded, but why not do it now.
|
|
258 (or recursivep (mail-resolve-all-aliases))
|
1432
|
259 mail-abbrevs)
|
459
|
260 (if buffer (kill-buffer buffer))
|
|
261 (set-buffer obuf)))
|
606
|
262 (message "Parsing %s... done" file))
|
459
|
263
|
627
|
264 (defvar mail-alias-separator-string ", "
|
459
|
265 "*A string inserted between addresses in multi-address mail aliases.
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
266 This has to contain a comma, so \", \" is a reasonable value. You might
|
459
|
267 also want something like \",\\n \" to get each address on its own line.")
|
|
268
|
3742
|
269 ;; define-mail-abbrev sets this flag, which causes mail-resolve-all-aliases
|
459
|
270 ;; to be called before expanding abbrevs if it's necessary.
|
|
271 (defvar mail-abbrev-aliases-need-to-be-resolved t)
|
|
272
|
1432
|
273 ;; originally defined in mailalias.el ; build-mail-abbrevs calls this with
|
459
|
274 ;; stuff parsed from the .mailrc file.
|
|
275 ;;
|
474
|
276 ;;;###autoload
|
3742
|
277 (defun define-mail-abbrev (name definition &optional from-mailrc-file)
|
11059
|
278 "Define NAME as a mail alias abbrev that translates to DEFINITION.
|
627
|
279 If DEFINITION contains multiple addresses, separate them with commas."
|
1432
|
280 ;; When this is called from build-mail-abbrevs, the third argument is
|
459
|
281 ;; true, and we do some evil space->comma hacking like /bin/mail does.
|
|
282 (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
|
|
283 ;; Read the defaults first, if we have not done so.
|
1432
|
284 (if (vectorp mail-abbrevs)
|
459
|
285 nil
|
1432
|
286 (setq mail-abbrevs nil)
|
|
287 (define-abbrev-table 'mail-abbrevs '())
|
10328
|
288 (if (file-exists-p mail-personal-alias-file)
|
1432
|
289 (build-mail-abbrevs)))
|
459
|
290 ;; strip garbage from front and end
|
|
291 (if (string-match "\\`[ \t\n,]+" definition)
|
|
292 (setq definition (substring definition (match-end 0))))
|
|
293 (if (string-match "[ \t\n,]+\\'" definition)
|
|
294 (setq definition (substring definition 0 (match-beginning 0))))
|
8215
|
295 (let* ((result '())
|
|
296 (L (length definition))
|
|
297 (start (if (> L 0) 0))
|
|
298 end)
|
459
|
299 (while start
|
|
300 ;; If we're reading from the mailrc file, then addresses are delimited
|
|
301 ;; by spaces, and addresses with embedded spaces must be surrounded by
|
627
|
302 ;; double-quotes. Otherwise, addresses are separated by commas.
|
459
|
303 (if from-mailrc-file
|
|
304 (if (eq ?\" (aref definition start))
|
|
305 (setq start (1+ start)
|
|
306 end (string-match "\"[ \t,]*" definition start))
|
8215
|
307 (setq end (string-match "[ \t,]+" definition start)))
|
|
308 (setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start)))
|
459
|
309 (setq result (cons (substring definition start end) result))
|
|
310 (setq start (and end
|
|
311 (/= (match-end 0) L)
|
|
312 (match-end 0))))
|
|
313 (setq definition (mapconcat (function identity)
|
|
314 (nreverse result)
|
627
|
315 mail-alias-separator-string)))
|
459
|
316 (setq mail-abbrev-aliases-need-to-be-resolved t)
|
|
317 (setq name (downcase name))
|
1432
|
318 ;; use an abbrev table instead of an alist for mail-abbrevs.
|
459
|
319 (let ((abbrevs-changed abbrevs-changed)) ; protect this from being changed.
|
43268
|
320 (define-abbrev mail-abbrevs name definition 'mail-abbrev-expand-hook 0 t)))
|
459
|
321
|
|
322
|
|
323 (defun mail-resolve-all-aliases ()
|
|
324 "Resolve all forward references in the mail aliases table."
|
|
325 (if mail-abbrev-aliases-need-to-be-resolved
|
|
326 (progn
|
|
327 ;; (message "Resolving mail aliases...")
|
1432
|
328 (if (vectorp mail-abbrevs)
|
|
329 (mapatoms (function mail-resolve-all-aliases-1) mail-abbrevs))
|
459
|
330 (setq mail-abbrev-aliases-need-to-be-resolved nil)
|
|
331 ;; (message "Resolving mail aliases... done.")
|
|
332 )))
|
|
333
|
717
|
334 (defun mail-resolve-all-aliases-1 (sym &optional so-far)
|
|
335 (if (memq sym so-far)
|
|
336 (error "mail alias loop detected: %s"
|
|
337 (mapconcat 'symbol-name (cons sym so-far) " <- ")))
|
459
|
338 (let ((definition (and (boundp sym) (symbol-value sym))))
|
|
339 (if definition
|
|
340 (let ((result '())
|
|
341 (start 0))
|
|
342 (while start
|
|
343 (let ((end (string-match "[ \t\n]*,[, \t\n]*" definition start)))
|
|
344 (setq result (cons (substring definition start end) result)
|
|
345 start (and end (match-end 0)))))
|
|
346 (setq definition
|
|
347 (mapconcat (function (lambda (x)
|
|
348 (or (mail-resolve-all-aliases-1
|
12444
|
349 (intern-soft (downcase x) mail-abbrevs)
|
717
|
350 (cons sym so-far))
|
459
|
351 x)))
|
|
352 (nreverse result)
|
627
|
353 mail-alias-separator-string))
|
459
|
354 (set sym definition))))
|
|
355 (symbol-value sym))
|
|
356
|
|
357
|
627
|
358 (defun mail-abbrev-expand-hook ()
|
11059
|
359 "For use as the fourth arg to `define-abbrev'.
|
|
360 After expanding a mail-abbrev, if Auto Fill mode is on and we're past the
|
|
361 fill-column, break the line at the previous comma, and indent the next line."
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
362 ;; Disable abbrev mode to avoid recursion in indent-relative expanding
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
363 ;; part of the abbrev expansion as an abbrev itself.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
364 (let ((abbrev-mode nil))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
365 (save-excursion
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
366 (let ((p (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
367 bol comma fp)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
368 (beginning-of-line)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
369 (setq bol (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
370 (goto-char p)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
371 (while (and auto-fill-function
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
372 (>= (current-column) fill-column)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
373 (search-backward "," bol t))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
374 (setq comma (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
375 (forward-char 1) ; Now we are just past the comma.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
376 (insert "\n")
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
377 (delete-horizontal-space)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
378 (setq p (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
379 (indent-relative)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
380 (setq fp (buffer-substring p (point)))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
381 ;; Go to the end of the new line.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
382 (end-of-line)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
383 (if (> (current-column) fill-column)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
384 ;; It's still too long; do normal auto-fill.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
385 (let ((fill-prefix (or fp "\t")))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
386 (do-auto-fill)))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
387 ;; Resume the search.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
388 (goto-char comma)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
389 )))))
|
598
|
390
|
|
391 ;;; Syntax tables and abbrev-expansion
|
459
|
392
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
393 (defvar mail-abbrev-mode-regexp
|
5559
|
394 "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):"
|
11059
|
395 "*Regexp to select mail-headers in which mail abbrevs should be expanded.
|
10776
|
396 This string will be handed to `looking-at' with point at the beginning
|
459
|
397 of the current line; if it matches, abbrev mode will be turned on, otherwise
|
|
398 it will be turned off. (You don't need to worry about continuation lines.)
|
|
399 This should be set to match those mail fields in which you want abbreviations
|
|
400 turned on.")
|
|
401
|
43136
|
402 (defvar mail-abbrev-syntax-table nil
|
13258
|
403 "The syntax-table used for abbrev-expansion purposes.
|
|
404 This is not actually made the current syntax table of the buffer, but
|
|
405 simply controls the set of characters which may be a part of the name
|
43136
|
406 of a mail alias. The value is set up, buffer-local, when first needed.")
|
598
|
407
|
459
|
408
|
598
|
409 (defun mail-abbrev-in-expansion-header-p ()
|
|
410 "Whether point is in a mail-address header field."
|
|
411 (let ((case-fold-search t))
|
|
412 (and ;;
|
|
413 ;; we are on an appropriate header line...
|
|
414 (save-excursion
|
39566
|
415 (unless (eobp) (forward-char 1))
|
|
416 (re-search-backward "^[^ \t]" nil 'move)
|
598
|
417 ;; are we at the front of an appropriate header line?
|
|
418 (looking-at mail-abbrev-mode-regexp))
|
|
419 ;;
|
21866
|
420 ;; ...and are we in the headers?
|
43268
|
421 (< (point)
|
|
422 (save-restriction
|
|
423 (widen)
|
|
424 (save-excursion
|
|
425 (rfc822-goto-eoh)
|
|
426 (point)))))))
|
598
|
427
|
|
428 (defvar mail-mode-abbrev-table) ; quiet the compiler
|
|
429
|
627
|
430 (defun sendmail-pre-abbrev-expand-hook ()
|
1432
|
431 (and (and mail-abbrevs (not (eq mail-abbrevs t)))
|
1148
|
432 (if (mail-abbrev-in-expansion-header-p)
|
43136
|
433
|
|
434 ;; We are in a To: (or CC:, or whatever) header, and
|
|
435 ;; should use word-abbrevs to expand mail aliases.
|
|
436 (let ((local-abbrev-table mail-abbrevs)
|
|
437 (old-syntax-table (syntax-table)))
|
1148
|
438
|
|
439 ;; Before anything else, resolve aliases if they need it.
|
|
440 (and mail-abbrev-aliases-need-to-be-resolved
|
|
441 (mail-resolve-all-aliases))
|
|
442
|
|
443 ;; Now proceed with the abbrev section.
|
43136
|
444 ;; - We already installed mail-abbrevs as the abbrev table.
|
1148
|
445 ;; - Then install the mail-abbrev-syntax-table, which
|
|
446 ;; temporarily marks all of the
|
|
447 ;; non-alphanumeric-atom-characters (the "_"
|
|
448 ;; syntax ones) as being normal word-syntax. We do this
|
|
449 ;; because the C code for expand-abbrev only works on words,
|
|
450 ;; and we want these characters to be considered words for
|
|
451 ;; the purpose of abbrev expansion.
|
|
452 ;; - Then we call expand-abbrev again, recursively, to do
|
|
453 ;; the abbrev expansion with the above syntax table.
|
43136
|
454 ;; - Restore the previous syntax table.
|
1148
|
455 ;; - Then we do a trick which tells the expand-abbrev frame
|
|
456 ;; which invoked us to not continue (and thus not
|
|
457 ;; expand twice.) This means that any abbrev expansion
|
|
458 ;; will happen as a result of this function's call to
|
|
459 ;; expand-abbrev, and not as a result of the call to
|
|
460 ;; expand-abbrev which invoked *us*.
|
|
461
|
43136
|
462 (make-local-variable 'mail-abbrev-syntax-table)
|
|
463 (unless mail-abbrev-syntax-table
|
|
464 (let ((tab (copy-syntax-table old-syntax-table))
|
|
465 (_ (aref (standard-syntax-table) ?_))
|
|
466 (w (aref (standard-syntax-table) ?w)))
|
|
467 (map-char-table
|
|
468 (function (lambda (key value)
|
|
469 (if (equal value _)
|
|
470 (set-char-table-range tab key w))))
|
|
471 tab)
|
43268
|
472 (modify-syntax-entry ?@ "w" tab)
|
43136
|
473 (setq mail-abbrev-syntax-table tab)))
|
1148
|
474
|
|
475 ;; If the character just typed was non-alpha-symbol-syntax,
|
|
476 ;; then don't expand the abbrev now (that is, don't expand
|
|
477 ;; when the user types -.) Check the character's syntax in
|
43136
|
478 ;; the usual syntax table.
|
1148
|
479
|
3668
|
480 (or (and (integerp last-command-char)
|
|
481 (eq (char-syntax last-command-char) ?_))
|
1148
|
482 (let ((pre-abbrev-expand-hook nil)) ; That's us; don't loop.
|
|
483 ;; Use this table so that abbrevs can have hyphens in them.
|
|
484 (set-syntax-table mail-abbrev-syntax-table)
|
43136
|
485 (unwind-protect
|
|
486 (expand-abbrev)
|
|
487 ;; Now set it back to what it was before.
|
|
488 (set-syntax-table old-syntax-table))))
|
11504
|
489 (setq abbrev-start-location (point-max) ; This is the trick.
|
1148
|
490 abbrev-start-location-buffer (current-buffer)))
|
|
491
|
20097
|
492 (if (or (not mail-abbrevs-only)
|
|
493 (eq this-command 'expand-abbrev))
|
43136
|
494 ;; We're not in a mail header where mail aliases should
|
|
495 ;; be expanded, then use the normal mail-mode abbrev table
|
|
496 ;; (if any) and the normal mail-mode syntax table.
|
|
497 nil
|
20097
|
498 ;; This is not a mail abbrev, and we should not expand it.
|
|
499 ;; This kludge stops expand-abbrev from doing anything.
|
|
500 (setq abbrev-start-location (point-max)
|
|
501 abbrev-start-location-buffer (current-buffer))))
|
1148
|
502 ))
|
598
|
503
|
|
504 ;;; utilities
|
459
|
505
|
1432
|
506 (defun merge-mail-abbrevs (file)
|
459
|
507 "Merge mail aliases from the given file with existing ones."
|
|
508 (interactive (list
|
|
509 (let ((insert-default-directory t)
|
|
510 (default-directory (expand-file-name "~/"))
|
10328
|
511 (def mail-personal-alias-file))
|
459
|
512 (read-file-name
|
|
513 (format "Read additional aliases from file: (default %s) "
|
|
514 def)
|
|
515 default-directory
|
|
516 (expand-file-name def default-directory)
|
|
517 t))))
|
1432
|
518 (build-mail-abbrevs file))
|
459
|
519
|
12945
|
520 (defun rebuild-mail-abbrevs (&optional file)
|
459
|
521 "Rebuild all the mail aliases from the given file."
|
|
522 (interactive (list
|
|
523 (let ((insert-default-directory t)
|
|
524 (default-directory (expand-file-name "~/"))
|
10328
|
525 (def mail-personal-alias-file))
|
459
|
526 (read-file-name
|
|
527 (format "Read mail aliases from file: (default %s) " def)
|
|
528 default-directory
|
|
529 (expand-file-name def default-directory)
|
|
530 t))))
|
12945
|
531 (if (null file)
|
|
532 (setq file buffer-file-name))
|
1432
|
533 (setq mail-abbrevs nil)
|
|
534 (build-mail-abbrevs file))
|
584
|
535
|
28803
|
536 (defun mail-abbrev-insert-alias (&optional alias)
|
598
|
537 "Prompt for and insert a mail alias."
|
907
|
538 (interactive (progn
|
1432
|
539 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
|
|
540 (list (completing-read "Expand alias: " mail-abbrevs nil t))))
|
|
541 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
|
13000
|
542 (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) ""))
|
|
543 (mail-abbrev-expand-hook))
|
598
|
544
|
28803
|
545 (defun mail-abbrev-complete-alias ()
|
|
546 "Perform completion on alias preceding point."
|
|
547 ;; Based on lisp.el:lisp-complete-symbol
|
|
548 (interactive)
|
|
549 (let* ((end (point))
|
|
550 (syntax-table (syntax-table))
|
|
551 (beg (unwind-protect
|
|
552 (save-excursion
|
|
553 (set-syntax-table mail-abbrev-syntax-table)
|
|
554 (backward-word 1)
|
|
555 (point))
|
|
556 (set-syntax-table syntax-table)))
|
|
557 (alias (buffer-substring beg end))
|
|
558 (completion (try-completion alias mail-abbrevs)))
|
|
559 (cond ((eq completion t)
|
|
560 (message "%s" alias)) ; confirm
|
|
561 ((null completion)
|
|
562 (error "[Can't complete \"%s\"]" alias)) ; (message ...) (ding)
|
|
563 ((not (string= completion alias))
|
|
564 (delete-region beg end)
|
|
565 (insert completion))
|
|
566 (t (with-output-to-temp-buffer "*Completions*"
|
|
567 (display-completion-list
|
|
568 (prog2
|
|
569 (message "Making completion list...")
|
|
570 (all-completions alias mail-abbrevs)
|
|
571 (message "Making completion list...done"))))))))
|
|
572
|
1432
|
573 (defun mail-abbrev-next-line (&optional arg)
|
|
574 "Expand any mail abbrev, then move cursor vertically down ARG lines.
|
|
575 If there is no character in the target line exactly under the current column,
|
|
576 the cursor is positioned after the character in that line which spans this
|
|
577 column, or at the end of the line if it is not long enough.
|
|
578 If there is no line in the buffer after this one,
|
|
579 a newline character is inserted to create a line
|
|
580 and the cursor moves to that line.
|
|
581
|
|
582 The command \\[set-goal-column] can be used to create
|
|
583 a semipermanent goal column to which this command always moves.
|
|
584 Then it does not try to move vertically. This goal column is stored
|
|
585 in `goal-column', which is nil when there is none.
|
|
586
|
|
587 If you are thinking of using this in a Lisp program, consider
|
|
588 using `forward-line' instead. It is usually easier to use
|
|
589 and more reliable (no dependence on goal column, etc.)."
|
598
|
590 (interactive "p")
|
717
|
591 (if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
592 (setq this-command 'next-line)
|
598
|
593 (next-line arg))
|
|
594
|
1432
|
595 (defun mail-abbrev-end-of-buffer (&optional arg)
|
|
596 "Expand any mail abbrev, then move point to end of buffer.
|
|
597 Leave mark at previous position.
|
|
598 With arg N, put point N/10 of the way from the true end.
|
|
599
|
|
600 Don't use this command in Lisp programs!
|
|
601 \(goto-char (point-max)) is faster and avoids clobbering the mark."
|
4034
9e585b42806d
(mail-abbrev-end-of-buffer): Fix interactive spec to "P", same as
Roland McGrath <roland@gnu.org>
diff
changeset
|
602 (interactive "P")
|
717
|
603 (if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
604 (setq this-command 'end-of-buffer)
|
598
|
605 (end-of-buffer arg))
|
|
606
|
43214
|
607 (eval-after-load "sendmail"
|
|
608 '(progn
|
|
609 (define-key mail-mode-map "\C-c\C-a" 'mail-abbrev-insert-alias)
|
|
610 (define-key mail-mode-map "\e\t" ; like lisp-complete-symbol
|
|
611 'mail-abbrev-complete-alias)))
|
598
|
612
|
1432
|
613 ;;(define-key mail-mode-map "\C-n" 'mail-abbrev-next-line)
|
|
614 ;;(define-key mail-mode-map "\M->" 'mail-abbrev-end-of-buffer)
|
598
|
615
|
2418
|
616 (provide 'mailabbrev)
|
14169
|
617
|
20097
|
618 (if mail-abbrevs-mode
|
|
619 (mail-abbrevs-enable))
|
|
620
|
38412
|
621 ;;; mailabbrev.el ends here
|