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