Mercurial > emacs
annotate lisp/mail/mailabbrev.el @ 49474:a53b597e29e0
(imap-mailbox-status): Fix typo.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 27 Jan 2003 08:41:55 +0000 |
parents | e0c2ecbf4fc5 |
children | d6c91e697cdc d7ddb3e565de |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34921
diff
changeset
|
1 ;;; mailabbrev.el --- abbrev-expansion of mail aliases |
1148 | 2 |
49171
e0c2ecbf4fc5
(Commentary): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
47573
diff
changeset
|
3 ;; Copyright (C) 1985, 86, 87, 92, 93, 96, 1997, 2000, 2002, 2003 |
28803
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
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>
parents:
14800
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 | |
44669
c94319aaffb8
(mail-mode-abbrev-table): Delete defvar.
Richard M. Stallman <rms@gnu.org>
parents:
44393
diff
changeset
|
45 ;; mode-specific 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
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
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
fc01ec9131a8
(mail-abbrevs-enable, mail-abbrevs-disable):
Gerd Moellmann <gerd@gnu.org>
parents:
30888
diff
changeset
|
112 ;; 'mail-mode-hook |
30888
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28803
diff
changeset
|
113 ;; (lambda () |
49171
e0c2ecbf4fc5
(Commentary): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
47573
diff
changeset
|
114 ;; (define-key mail-mode-map [remap next-line] 'mail-abbrev-next-line) |
e0c2ecbf4fc5
(Commentary): Use command remapping instead of
Andreas Schwab <schwab@suse.de>
parents:
47573
diff
changeset
|
115 ;; (define-key mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer))) |
14169 | 116 ;; |
117 ;; If you want multiple addresses separated by a string other than ", " then | |
118 ;; you can set the variable mail-alias-separator-string to it. This has to | |
119 ;; be a comma bracketed by whitespace if you want any kind of reasonable | |
120 ;; behaviour. | |
121 ;; | |
122 ;; Thanks to Harald Hanche-Olsen, Michael Ernst, David Loeffler, and | |
123 ;; Noah Friedman for suggestions and bug reports. | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
124 |
34921
fc01ec9131a8
(mail-abbrevs-enable, mail-abbrevs-disable):
Gerd Moellmann <gerd@gnu.org>
parents:
30888
diff
changeset
|
125 ;; To use this package, do (add-hook 'mail-mode-hook 'mail-abbrevs-setup). |
459 | 126 |
1148 | 127 ;;; Code: |
128 | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
129 (eval-when-compile |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
130 (require 'sendmail)) |
459 | 131 |
20097 | 132 (defgroup mail-abbrev nil |
133 "Expand mail aliases as abbrevs, in certain mail headers." | |
134 :group 'abbrev-mode) | |
135 | |
136 (defcustom mail-abbrevs-mode nil | |
137 "*Non-nil means expand mail aliases as abbrevs, in certain message headers." | |
138 :type 'boolean | |
139 :group 'mail-abbrev | |
140 :require 'mailabbrev | |
30888
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28803
diff
changeset
|
141 :set (lambda (symbol value) |
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28803
diff
changeset
|
142 (setq mail-abbrevs-mode value) |
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28803
diff
changeset
|
143 (if value (mail-abbrevs-enable) (mail-abbrevs-disable))) |
21670
808ecc2eaa84
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
20219
diff
changeset
|
144 :initialize 'custom-initialize-default |
808ecc2eaa84
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
20219
diff
changeset
|
145 :version "20.3") |
20097 | 146 |
147 (defcustom mail-abbrevs-only nil | |
148 "*Non-nil means only mail abbrevs should expand automatically. | |
149 Other abbrevs expand only when you explicitly use `expand-abbrev'." | |
150 :type 'boolean | |
151 :group 'mail-abbrev) | |
152 | |
459 | 153 ;; originally defined in sendmail.el - used to be an alist, now is a table. |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
154 (defvar mail-abbrevs nil |
598 | 155 "Word-abbrev table of mail address aliases. |
459 | 156 If this is nil, it means the aliases have not yet been initialized and |
157 should be read from the .mailrc file. (This is distinct from there being | |
158 no aliases, which is represented by this being a table with no entries.)") | |
159 | |
14800
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
160 (defvar mail-abbrev-modtime nil |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
161 "The modification time of your mail alias file when it was last examined.") |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
162 |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
163 (defun mail-abbrevs-sync-aliases () |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
164 (if (file-exists-p mail-personal-alias-file) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
165 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file)))) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
166 (if (not (equal mail-abbrev-modtime modtime)) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
167 (progn |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
168 (setq mail-abbrev-modtime modtime) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
169 (build-mail-abbrevs)))))) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
170 |
474 | 171 ;;;###autoload |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
172 (defun mail-abbrevs-setup () |
14761
bef2b46521de
(mail-abbrevs-setup): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
173 "Initialize use of the `mailabbrev' package." |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
174 (if (and (not (vectorp mail-abbrevs)) |
10328
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
175 (file-exists-p mail-personal-alias-file)) |
14800
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
176 (progn |
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
177 (setq mail-abbrev-modtime |
14800
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
178 (nth 5 (file-attributes mail-personal-alias-file))) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
179 (build-mail-abbrevs))) |
47631a15d6a2
(mail-abbrev-modtime): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
14761
diff
changeset
|
180 (mail-abbrevs-sync-aliases) |
11059 | 181 (add-hook 'pre-abbrev-expand-hook 'sendmail-pre-abbrev-expand-hook |
182 nil t) | |
459 | 183 (abbrev-mode 1)) |
184 | |
20097 | 185 (defun mail-abbrevs-enable () |
34921
fc01ec9131a8
(mail-abbrevs-enable, mail-abbrevs-disable):
Gerd Moellmann <gerd@gnu.org>
parents:
30888
diff
changeset
|
186 (add-hook 'mail-mode-hook 'mail-abbrevs-setup)) |
20097 | 187 |
188 (defun mail-abbrevs-disable () | |
189 "Turn off use of the `mailabbrev' package." | |
34921
fc01ec9131a8
(mail-abbrevs-enable, mail-abbrevs-disable):
Gerd Moellmann <gerd@gnu.org>
parents:
30888
diff
changeset
|
190 (remove-hook 'mail-mode-hook 'mail-abbrevs-setup) |
20097 | 191 (abbrev-mode (if (default-value 'abbrev-mode) 1 -1))) |
192 | |
598 | 193 ;;;###autoload |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
194 (defun build-mail-abbrevs (&optional file recursivep) |
10328
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
195 "Read mail aliases from personal mail alias file and set `mail-abbrevs'. |
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
196 By default this is the file specified by `mail-personal-alias-file'." |
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
197 (setq file (expand-file-name (or file mail-personal-alias-file))) |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
198 (if (vectorp mail-abbrevs) |
459 | 199 nil |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
200 (setq mail-abbrevs nil) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
201 (define-abbrev-table 'mail-abbrevs '())) |
606 | 202 (message "Parsing %s..." file) |
459 | 203 (let ((buffer nil) |
204 (obuf (current-buffer))) | |
205 (unwind-protect | |
206 (progn | |
20219
b90e718314de
(build-mail-abbrevs): Use initial space in
Karl Heuer <kwzh@gnu.org>
parents:
20097
diff
changeset
|
207 (setq buffer (generate-new-buffer " mailrc")) |
598 | 208 (buffer-disable-undo buffer) |
459 | 209 (set-buffer buffer) |
210 (cond ((get-file-buffer file) | |
211 (insert (save-excursion | |
212 (set-buffer (get-file-buffer file)) | |
213 (buffer-substring (point-min) (point-max))))) | |
214 ((not (file-exists-p file))) | |
215 (t (insert-file-contents file))) | |
216 ;; Don't lose if no final newline. | |
217 (goto-char (point-max)) | |
218 (or (eq (preceding-char) ?\n) (newline)) | |
219 (goto-char (point-min)) | |
220 ;; Delete comments from the file | |
221 (while (search-forward "# " nil t) | |
222 (let ((p (- (point) 2))) | |
223 (end-of-line) | |
224 (delete-region p (point)))) | |
225 (goto-char (point-min)) | |
226 ;; handle "\\\n" continuation lines | |
227 (while (not (eobp)) | |
228 (end-of-line) | |
229 (if (= (preceding-char) ?\\) | |
230 (progn (delete-char -1) (delete-char 1) (insert ?\ )) | |
231 (forward-char 1))) | |
232 (goto-char (point-min)) | |
233 (while (re-search-forward | |
907 | 234 "^\\(a\\(lias\\)?\\|g\\(roup\\)?\\|source\\)[ \t]+" nil t) |
459 | 235 (beginning-of-line) |
236 (if (looking-at "source[ \t]+\\([^ \t\n]+\\)") | |
237 (progn | |
238 (end-of-line) | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
239 (build-mail-abbrevs |
3945
7a8d0a08eac7
(build-mail-abbrevs): Do substitute-in-file-name on the abbrev, for `source'.
Richard M. Stallman <rms@gnu.org>
parents:
3742
diff
changeset
|
240 (substitute-in-file-name |
7939
338a91733ff9
(build-mail-abbrevs): Pass a recursivep argument in recursive call.
Richard M. Stallman <rms@gnu.org>
parents:
5559
diff
changeset
|
241 (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>
parents:
5559
diff
changeset
|
242 t)) |
459 | 243 (re-search-forward "[ \t]+\\([^ \t\n]+\\)") |
244 (let* ((name (buffer-substring | |
245 (match-beginning 1) (match-end 1))) | |
246 (start (progn (skip-chars-forward " \t") (point)))) | |
247 (end-of-line) | |
248 ; (message "** %s \"%s\"" name (buffer-substring start (point)))(sit-for 1) | |
3742
f5bbe69b8bc5
(define-mail-abbrev): Renamed from define-mail-alias.
Richard M. Stallman <rms@gnu.org>
parents:
3741
diff
changeset
|
249 (define-mail-abbrev |
459 | 250 name |
3742
f5bbe69b8bc5
(define-mail-abbrev): Renamed from define-mail-alias.
Richard M. Stallman <rms@gnu.org>
parents:
3741
diff
changeset
|
251 (buffer-substring start (point)) |
f5bbe69b8bc5
(define-mail-abbrev): Renamed from define-mail-alias.
Richard M. Stallman <rms@gnu.org>
parents:
3741
diff
changeset
|
252 t)))) |
459 | 253 ;; Resolve forward references in .mailrc file. |
254 ;; This would happen automatically before the first abbrev was | |
255 ;; expanded, but why not do it now. | |
256 (or recursivep (mail-resolve-all-aliases)) | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
257 mail-abbrevs) |
459 | 258 (if buffer (kill-buffer buffer)) |
259 (set-buffer obuf))) | |
606 | 260 (message "Parsing %s... done" file)) |
459 | 261 |
627 | 262 (defvar mail-alias-separator-string ", " |
459 | 263 "*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>
parents:
14800
diff
changeset
|
264 This has to contain a comma, so \", \" is a reasonable value. You might |
459 | 265 also want something like \",\\n \" to get each address on its own line.") |
266 | |
3742
f5bbe69b8bc5
(define-mail-abbrev): Renamed from define-mail-alias.
Richard M. Stallman <rms@gnu.org>
parents:
3741
diff
changeset
|
267 ;; define-mail-abbrev sets this flag, which causes mail-resolve-all-aliases |
459 | 268 ;; to be called before expanding abbrevs if it's necessary. |
269 (defvar mail-abbrev-aliases-need-to-be-resolved t) | |
270 | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
271 ;; originally defined in mailalias.el ; build-mail-abbrevs calls this with |
459 | 272 ;; stuff parsed from the .mailrc file. |
273 ;; | |
474 | 274 ;;;###autoload |
3742
f5bbe69b8bc5
(define-mail-abbrev): Renamed from define-mail-alias.
Richard M. Stallman <rms@gnu.org>
parents:
3741
diff
changeset
|
275 (defun define-mail-abbrev (name definition &optional from-mailrc-file) |
11059 | 276 "Define NAME as a mail alias abbrev that translates to DEFINITION. |
627 | 277 If DEFINITION contains multiple addresses, separate them with commas." |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
278 ;; When this is called from build-mail-abbrevs, the third argument is |
459 | 279 ;; true, and we do some evil space->comma hacking like /bin/mail does. |
280 (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ") | |
281 ;; Read the defaults first, if we have not done so. | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
282 (if (vectorp mail-abbrevs) |
459 | 283 nil |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
284 (setq mail-abbrevs nil) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
285 (define-abbrev-table 'mail-abbrevs '()) |
10328
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
286 (if (file-exists-p mail-personal-alias-file) |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
287 (build-mail-abbrevs))) |
459 | 288 ;; strip garbage from front and end |
289 (if (string-match "\\`[ \t\n,]+" definition) | |
290 (setq definition (substring definition (match-end 0)))) | |
291 (if (string-match "[ \t\n,]+\\'" definition) | |
292 (setq definition (substring definition 0 (match-beginning 0)))) | |
8215
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
293 (let* ((result '()) |
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
294 (L (length definition)) |
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
295 (start (if (> L 0) 0)) |
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
296 end) |
459 | 297 (while start |
298 ;; If we're reading from the mailrc file, then addresses are delimited | |
299 ;; by spaces, and addresses with embedded spaces must be surrounded by | |
627 | 300 ;; double-quotes. Otherwise, addresses are separated by commas. |
459 | 301 (if from-mailrc-file |
302 (if (eq ?\" (aref definition start)) | |
303 (setq start (1+ start) | |
304 end (string-match "\"[ \t,]*" definition start)) | |
8215
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
305 (setq end (string-match "[ \t,]+" definition start))) |
767bef8ec35b
(define-mail-abbrev): Don't try to parse empty aliases.
Richard M. Stallman <rms@gnu.org>
parents:
7939
diff
changeset
|
306 (setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start))) |
459 | 307 (setq result (cons (substring definition start end) result)) |
308 (setq start (and end | |
309 (/= (match-end 0) L) | |
310 (match-end 0)))) | |
311 (setq definition (mapconcat (function identity) | |
312 (nreverse result) | |
627 | 313 mail-alias-separator-string))) |
459 | 314 (setq mail-abbrev-aliases-need-to-be-resolved t) |
315 (setq name (downcase name)) | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
316 ;; use an abbrev table instead of an alist for mail-abbrevs. |
459 | 317 (let ((abbrevs-changed abbrevs-changed)) ; protect this from being changed. |
43268
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
318 (define-abbrev mail-abbrevs name definition 'mail-abbrev-expand-hook 0 t))) |
459 | 319 |
320 | |
321 (defun mail-resolve-all-aliases () | |
322 "Resolve all forward references in the mail aliases table." | |
323 (if mail-abbrev-aliases-need-to-be-resolved | |
324 (progn | |
325 ;; (message "Resolving mail aliases...") | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
326 (if (vectorp mail-abbrevs) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
327 (mapatoms (function mail-resolve-all-aliases-1) mail-abbrevs)) |
459 | 328 (setq mail-abbrev-aliases-need-to-be-resolved nil) |
329 ;; (message "Resolving mail aliases... done.") | |
330 ))) | |
331 | |
717 | 332 (defun mail-resolve-all-aliases-1 (sym &optional so-far) |
333 (if (memq sym so-far) | |
334 (error "mail alias loop detected: %s" | |
335 (mapconcat 'symbol-name (cons sym so-far) " <- "))) | |
459 | 336 (let ((definition (and (boundp sym) (symbol-value sym)))) |
337 (if definition | |
338 (let ((result '()) | |
339 (start 0)) | |
340 (while start | |
341 (let ((end (string-match "[ \t\n]*,[, \t\n]*" definition start))) | |
342 (setq result (cons (substring definition start end) result) | |
343 start (and end (match-end 0))))) | |
344 (setq definition | |
345 (mapconcat (function (lambda (x) | |
346 (or (mail-resolve-all-aliases-1 | |
12444
0f96d53b31b7
(mail-resolve-all-aliases-1):
Richard M. Stallman <rms@gnu.org>
parents:
11504
diff
changeset
|
347 (intern-soft (downcase x) mail-abbrevs) |
717 | 348 (cons sym so-far)) |
459 | 349 x))) |
350 (nreverse result) | |
627 | 351 mail-alias-separator-string)) |
459 | 352 (set sym definition)))) |
353 (symbol-value sym)) | |
354 | |
355 | |
627 | 356 (defun mail-abbrev-expand-hook () |
11059 | 357 "For use as the fourth arg to `define-abbrev'. |
358 After expanding a mail-abbrev, if Auto Fill mode is on and we're past the | |
359 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>
parents:
14800
diff
changeset
|
360 ;; 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>
parents:
14800
diff
changeset
|
361 ;; 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>
parents:
14800
diff
changeset
|
362 (let ((abbrev-mode nil)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
363 (save-excursion |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
364 (let ((p (point)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
365 bol comma fp) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
366 (beginning-of-line) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
367 (setq bol (point)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
368 (goto-char p) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
369 (while (and auto-fill-function |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
370 (>= (current-column) fill-column) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
371 (search-backward "," bol t)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
372 (setq comma (point)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
373 (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>
parents:
14800
diff
changeset
|
374 (insert "\n") |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
375 (delete-horizontal-space) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
376 (setq p (point)) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
377 (indent-relative) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
378 (setq fp (buffer-substring p (point))) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
379 ;; Go to the end of the new line. |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
380 (end-of-line) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
381 (if (> (current-column) fill-column) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
382 ;; 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>
parents:
14800
diff
changeset
|
383 (let ((fill-prefix (or fp "\t"))) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
384 (do-auto-fill))) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
385 ;; Resume the search. |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
386 (goto-char comma) |
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
387 ))))) |
598 | 388 |
389 ;;; Syntax tables and abbrev-expansion | |
459 | 390 |
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
parents:
14800
diff
changeset
|
391 (defvar mail-abbrev-mode-regexp |
5559
e976a52296fc
(mail-abbrev-mode-regexp): Add Reply-to.
Richard M. Stallman <rms@gnu.org>
parents:
4805
diff
changeset
|
392 "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):" |
11059 | 393 "*Regexp to select mail-headers in which mail abbrevs should be expanded. |
10776
52b3af3cb71a
(mail-abbrev-mode-regexp): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
10328
diff
changeset
|
394 This string will be handed to `looking-at' with point at the beginning |
459 | 395 of the current line; if it matches, abbrev mode will be turned on, otherwise |
396 it will be turned off. (You don't need to worry about continuation lines.) | |
397 This should be set to match those mail fields in which you want abbreviations | |
398 turned on.") | |
399 | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
400 (defvar mail-abbrev-syntax-table nil |
13258
2a96bf08bccb
(mail-abbrev-syntax-table): Rewrite using map-char-table.
Richard M. Stallman <rms@gnu.org>
parents:
13161
diff
changeset
|
401 "The syntax-table used for abbrev-expansion purposes. |
2a96bf08bccb
(mail-abbrev-syntax-table): Rewrite using map-char-table.
Richard M. Stallman <rms@gnu.org>
parents:
13161
diff
changeset
|
402 This is not actually made the current syntax table of the buffer, but |
2a96bf08bccb
(mail-abbrev-syntax-table): Rewrite using map-char-table.
Richard M. Stallman <rms@gnu.org>
parents:
13161
diff
changeset
|
403 simply controls the set of characters which may be a part of the name |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
404 of a mail alias. The value is set up, buffer-local, when first needed.") |
598 | 405 |
44118
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
406 (defun mail-abbrev-make-syntax-table () |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
407 (make-local-variable 'mail-abbrev-syntax-table) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
408 (unless mail-abbrev-syntax-table |
44393
6ae0e3db6a85
(mail-abbrev-make-syntax-table): Use (syntax-table), not old-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents:
44379
diff
changeset
|
409 (let ((tab (copy-syntax-table (syntax-table))) |
44118
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
410 (_ (aref (standard-syntax-table) ?_)) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
411 (w (aref (standard-syntax-table) ?w))) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
412 (map-char-table |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
413 (function (lambda (key value) |
46354
ff0c68e547f7
(mail-abbrev-make-syntax-table): Check the
Andreas Schwab <schwab@suse.de>
parents:
44669
diff
changeset
|
414 (if (null value) |
ff0c68e547f7
(mail-abbrev-make-syntax-table): Check the
Andreas Schwab <schwab@suse.de>
parents:
44669
diff
changeset
|
415 ;; Fetch the inherited value |
ff0c68e547f7
(mail-abbrev-make-syntax-table): Check the
Andreas Schwab <schwab@suse.de>
parents:
44669
diff
changeset
|
416 (setq value (aref tab key))) |
44118
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
417 (if (equal value _) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
418 (set-char-table-range tab key w)))) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
419 tab) |
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
420 (modify-syntax-entry ?@ "w" tab) |
47573
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
46354
diff
changeset
|
421 (modify-syntax-entry ?% "w" tab) |
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
46354
diff
changeset
|
422 (modify-syntax-entry ?! "w" tab) |
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
46354
diff
changeset
|
423 (modify-syntax-entry ?. "w" tab) |
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
46354
diff
changeset
|
424 (modify-syntax-entry ?_ "w" tab) |
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
46354
diff
changeset
|
425 (modify-syntax-entry ?- "w" tab) |
44118
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
426 (setq mail-abbrev-syntax-table tab)))) |
459 | 427 |
598 | 428 (defun mail-abbrev-in-expansion-header-p () |
429 "Whether point is in a mail-address header field." | |
430 (let ((case-fold-search t)) | |
431 (and ;; | |
432 ;; we are on an appropriate header line... | |
433 (save-excursion | |
39566
497b8fa7e100
(mail-abbrev-in-expansion-header-p): Simplify.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
434 (unless (eobp) (forward-char 1)) |
497b8fa7e100
(mail-abbrev-in-expansion-header-p): Simplify.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
435 (re-search-backward "^[^ \t]" nil 'move) |
598 | 436 ;; are we at the front of an appropriate header line? |
437 (looking-at mail-abbrev-mode-regexp)) | |
438 ;; | |
21866
d98a0a598fb9
(mail-abbrev-in-expansion-header-p): Use mail-header-end.
Richard M. Stallman <rms@gnu.org>
parents:
21670
diff
changeset
|
439 ;; ...and are we in the headers? |
43268
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
440 (< (point) |
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
441 (save-restriction |
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
442 (widen) |
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
443 (save-excursion |
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
444 (rfc822-goto-eoh) |
08fa5680829b
(define-mail-abbrev): Define as system abbrev.
Richard M. Stallman <rms@gnu.org>
parents:
43214
diff
changeset
|
445 (point))))))) |
598 | 446 |
627 | 447 (defun sendmail-pre-abbrev-expand-hook () |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
448 (and (and mail-abbrevs (not (eq mail-abbrevs t))) |
1148 | 449 (if (mail-abbrev-in-expansion-header-p) |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
450 |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
451 ;; We are in a To: (or CC:, or whatever) header, and |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
452 ;; should use word-abbrevs to expand mail aliases. |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
453 (let ((local-abbrev-table mail-abbrevs) |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
454 (old-syntax-table (syntax-table))) |
1148 | 455 |
456 ;; Before anything else, resolve aliases if they need it. | |
457 (and mail-abbrev-aliases-need-to-be-resolved | |
458 (mail-resolve-all-aliases)) | |
459 | |
460 ;; Now proceed with the abbrev section. | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
461 ;; - We already installed mail-abbrevs as the abbrev table. |
1148 | 462 ;; - Then install the mail-abbrev-syntax-table, which |
463 ;; temporarily marks all of the | |
464 ;; non-alphanumeric-atom-characters (the "_" | |
465 ;; syntax ones) as being normal word-syntax. We do this | |
466 ;; because the C code for expand-abbrev only works on words, | |
467 ;; and we want these characters to be considered words for | |
468 ;; the purpose of abbrev expansion. | |
469 ;; - Then we call expand-abbrev again, recursively, to do | |
470 ;; the abbrev expansion with the above syntax table. | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
471 ;; - Restore the previous syntax table. |
1148 | 472 ;; - Then we do a trick which tells the expand-abbrev frame |
473 ;; which invoked us to not continue (and thus not | |
474 ;; expand twice.) This means that any abbrev expansion | |
475 ;; will happen as a result of this function's call to | |
476 ;; expand-abbrev, and not as a result of the call to | |
477 ;; expand-abbrev which invoked *us*. | |
478 | |
44118
00eee90af15f
(mail-abbrev-make-syntax-table): New subroutine
Richard M. Stallman <rms@gnu.org>
parents:
43268
diff
changeset
|
479 (mail-abbrev-make-syntax-table) |
1148 | 480 |
481 ;; If the character just typed was non-alpha-symbol-syntax, | |
482 ;; then don't expand the abbrev now (that is, don't expand | |
483 ;; when the user types -.) Check the character's syntax in | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
484 ;; the usual syntax table. |
1148 | 485 |
3668
87f7ff6bba51
(sendmail-pre-abbrev-expand-hook):
Richard M. Stallman <rms@gnu.org>
parents:
3664
diff
changeset
|
486 (or (and (integerp last-command-char) |
87f7ff6bba51
(sendmail-pre-abbrev-expand-hook):
Richard M. Stallman <rms@gnu.org>
parents:
3664
diff
changeset
|
487 (eq (char-syntax last-command-char) ?_)) |
1148 | 488 (let ((pre-abbrev-expand-hook nil)) ; That's us; don't loop. |
489 ;; Use this table so that abbrevs can have hyphens in them. | |
490 (set-syntax-table mail-abbrev-syntax-table) | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
491 (unwind-protect |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
492 (expand-abbrev) |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
493 ;; Now set it back to what it was before. |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
494 (set-syntax-table old-syntax-table)))) |
11504
ae5b033ad31f
(sendmail-pre-abbrev-expand-hook): When setting the
Karl Heuer <kwzh@gnu.org>
parents:
11059
diff
changeset
|
495 (setq abbrev-start-location (point-max) ; This is the trick. |
1148 | 496 abbrev-start-location-buffer (current-buffer))) |
497 | |
20097 | 498 (if (or (not mail-abbrevs-only) |
499 (eq this-command 'expand-abbrev)) | |
43136
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
500 ;; We're not in a mail header where mail aliases should |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
501 ;; be expanded, then use the normal mail-mode abbrev table |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
502 ;; (if any) and the normal mail-mode syntax table. |
9c1aa7b635bd
Require sendmail only at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
41998
diff
changeset
|
503 nil |
20097 | 504 ;; This is not a mail abbrev, and we should not expand it. |
505 ;; This kludge stops expand-abbrev from doing anything. | |
506 (setq abbrev-start-location (point-max) | |
507 abbrev-start-location-buffer (current-buffer)))) | |
1148 | 508 )) |
598 | 509 |
510 ;;; utilities | |
459 | 511 |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
512 (defun merge-mail-abbrevs (file) |
459 | 513 "Merge mail aliases from the given file with existing ones." |
514 (interactive (list | |
515 (let ((insert-default-directory t) | |
516 (default-directory (expand-file-name "~/")) | |
10328
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
517 (def mail-personal-alias-file)) |
459 | 518 (read-file-name |
519 (format "Read additional aliases from file: (default %s) " | |
520 def) | |
521 default-directory | |
522 (expand-file-name def default-directory) | |
523 t)))) | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
524 (build-mail-abbrevs file)) |
459 | 525 |
12945
14e16370799d
(rebuild-mail-abbrevs): FILE defaults to visited file.
Richard M. Stallman <rms@gnu.org>
parents:
12444
diff
changeset
|
526 (defun rebuild-mail-abbrevs (&optional file) |
459 | 527 "Rebuild all the mail aliases from the given file." |
528 (interactive (list | |
529 (let ((insert-default-directory t) | |
530 (default-directory (expand-file-name "~/")) | |
10328
edd33989fb23
(mail-abbrev-mailrc-file): Variable and macro deleted.
Noah Friedman <friedman@splode.com>
parents:
8215
diff
changeset
|
531 (def mail-personal-alias-file)) |
459 | 532 (read-file-name |
533 (format "Read mail aliases from file: (default %s) " def) | |
534 default-directory | |
535 (expand-file-name def default-directory) | |
536 t)))) | |
12945
14e16370799d
(rebuild-mail-abbrevs): FILE defaults to visited file.
Richard M. Stallman <rms@gnu.org>
parents:
12444
diff
changeset
|
537 (if (null file) |
14e16370799d
(rebuild-mail-abbrevs): FILE defaults to visited file.
Richard M. Stallman <rms@gnu.org>
parents:
12444
diff
changeset
|
538 (setq file buffer-file-name)) |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
539 (setq mail-abbrevs nil) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
540 (build-mail-abbrevs file)) |
584 | 541 |
28803
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
542 (defun mail-abbrev-insert-alias (&optional alias) |
598 | 543 "Prompt for and insert a mail alias." |
907 | 544 (interactive (progn |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
545 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
546 (list (completing-read "Expand alias: " mail-abbrevs nil t)))) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
547 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup)) |
13000
a86ad056a1cd
(mail-interactive-insert-alias): Call mail-abbrev-expand-hook.
Richard M. Stallman <rms@gnu.org>
parents:
12956
diff
changeset
|
548 (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) "")) |
a86ad056a1cd
(mail-interactive-insert-alias): Call mail-abbrev-expand-hook.
Richard M. Stallman <rms@gnu.org>
parents:
12956
diff
changeset
|
549 (mail-abbrev-expand-hook)) |
598 | 550 |
28803
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
551 (defun mail-abbrev-complete-alias () |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
552 "Perform completion on alias preceding point." |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
553 ;; Based on lisp.el:lisp-complete-symbol |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
554 (interactive) |
44379
5e64981e7abd
(mail-abbrev-complete-alias): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents:
44118
diff
changeset
|
555 (mail-abbrev-make-syntax-table) |
28803
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
556 (let* ((end (point)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
557 (syntax-table (syntax-table)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
558 (beg (unwind-protect |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
559 (save-excursion |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
560 (set-syntax-table mail-abbrev-syntax-table) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
561 (backward-word 1) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
562 (point)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
563 (set-syntax-table syntax-table))) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
564 (alias (buffer-substring beg end)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
565 (completion (try-completion alias mail-abbrevs))) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
566 (cond ((eq completion t) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
567 (message "%s" alias)) ; confirm |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
568 ((null completion) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
569 (error "[Can't complete \"%s\"]" alias)) ; (message ...) (ding) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
570 ((not (string= completion alias)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
571 (delete-region beg end) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
572 (insert completion)) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
573 (t (with-output-to-temp-buffer "*Completions*" |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
574 (display-completion-list |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
575 (prog2 |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
576 (message "Making completion list...") |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
577 (all-completions alias mail-abbrevs) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
578 (message "Making completion list...done")))))))) |
80075cf72ede
(mail-abbrev-insert-alias): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
27589
diff
changeset
|
579 |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
580 (defun mail-abbrev-next-line (&optional arg) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
581 "Expand any mail abbrev, then move cursor vertically down ARG lines. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
582 If there is no character in the target line exactly under the current column, |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
583 the cursor is positioned after the character in that line which spans this |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
584 column, or at the end of the line if it is not long enough. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
585 If there is no line in the buffer after this one, |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
586 a newline character is inserted to create a line |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
587 and the cursor moves to that line. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
588 |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
589 The command \\[set-goal-column] can be used to create |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
590 a semipermanent goal column to which this command always moves. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
591 Then it does not try to move vertically. This goal column is stored |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
592 in `goal-column', which is nil when there is none. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
593 |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
594 If you are thinking of using this in a Lisp program, consider |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
595 using `forward-line' instead. It is usually easier to use |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
596 and more reliable (no dependence on goal column, etc.)." |
598 | 597 (interactive "p") |
717 | 598 (if (looking-at "[ \t]*\n") (expand-abbrev)) |
599 (setq this-command 'next-line) | |
598 | 600 (next-line arg)) |
601 | |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
602 (defun mail-abbrev-end-of-buffer (&optional arg) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
603 "Expand any mail abbrev, then move point to end of buffer. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
604 Leave mark at previous position. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
605 With arg N, put point N/10 of the way from the true end. |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
606 |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
607 Don't use this command in Lisp programs! |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
608 \(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>
parents:
3945
diff
changeset
|
609 (interactive "P") |
717 | 610 (if (looking-at "[ \t]*\n") (expand-abbrev)) |
611 (setq this-command 'end-of-buffer) | |
598 | 612 (end-of-buffer arg)) |
613 | |
43214
c7e8bcec1caf
(mail-mode-map): Use eval-after-load to change it.
Richard M. Stallman <rms@gnu.org>
parents:
43136
diff
changeset
|
614 (eval-after-load "sendmail" |
c7e8bcec1caf
(mail-mode-map): Use eval-after-load to change it.
Richard M. Stallman <rms@gnu.org>
parents:
43136
diff
changeset
|
615 '(progn |
c7e8bcec1caf
(mail-mode-map): Use eval-after-load to change it.
Richard M. Stallman <rms@gnu.org>
parents:
43136
diff
changeset
|
616 (define-key mail-mode-map "\C-c\C-a" 'mail-abbrev-insert-alias) |
c7e8bcec1caf
(mail-mode-map): Use eval-after-load to change it.
Richard M. Stallman <rms@gnu.org>
parents:
43136
diff
changeset
|
617 (define-key mail-mode-map "\e\t" ; like lisp-complete-symbol |
c7e8bcec1caf
(mail-mode-map): Use eval-after-load to change it.
Richard M. Stallman <rms@gnu.org>
parents:
43136
diff
changeset
|
618 'mail-abbrev-complete-alias))) |
598 | 619 |
1432
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
620 ;;(define-key mail-mode-map "\C-n" 'mail-abbrev-next-line) |
7446ab662993
Delete version 18 compatibility stuff.
Richard M. Stallman <rms@gnu.org>
parents:
1150
diff
changeset
|
621 ;;(define-key mail-mode-map "\M->" 'mail-abbrev-end-of-buffer) |
598 | 622 |
2418
3af5c7b9f4a1
Provide mailabbrev, not mail-abbrevs.
Richard M. Stallman <rms@gnu.org>
parents:
1832
diff
changeset
|
623 (provide 'mailabbrev) |
14169 | 624 |
20097 | 625 (if mail-abbrevs-mode |
626 (mail-abbrevs-enable)) | |
627 | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34921
diff
changeset
|
628 ;;; mailabbrev.el ends here |