Mercurial > emacs
annotate lisp/mail/vms-pmail.el @ 87169:ac7eee19fc7e
Improves calls to `error', per mail from RMS.
author | Deepak Goel <deego@gnufans.org> |
---|---|
date | Sat, 08 Dec 2007 00:57:23 +0000 |
parents | 2c08ad76fc1f |
children | 107ccd98fa12 53108e6cea98 |
rev | line source |
---|---|
86503
2c08ad76fc1f
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85529
diff
changeset
|
1 ;; -*- no-byte-compile: t -*- |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30285
diff
changeset
|
2 ;;; vms-pmail.el --- use Emacs as the editor within VMS mail |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1190
diff
changeset
|
3 |
74509 | 4 ;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, |
75347 | 5 ;; 2006, 2007 Free Software Foundation, Inc. |
1190 | 6 |
18013 | 7 ;; Author: Roland B Roberts <roberts@panix.com> |
30285 | 8 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
9 ;; Keywords: vms |
1190 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
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 | |
78232
8e27d63c45eb
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
1190 | 16 ;; any later version. |
17 | |
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. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
14169 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
1190 | 27 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30285
diff
changeset
|
28 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30285
diff
changeset
|
29 |
1190 | 30 ;;; Code: |
31 | |
32 ;;; | |
33 ;;; Quick hack to use emacs as mail editor. There are a *bunch* of | |
34 ;;; changes scattered throughout emacs to make this work, namely: | |
35 ;;; (1) mod to sysdep.c to allow emacs to attach to a process other | |
36 ;;; than the one that originally spawned it. | |
37 ;;; (2) mod to kepteditor.com to define the logical emacs_parent_pid | |
38 ;;; which is what sysdep.c looks for, and define the logical | |
39 ;;; emacs_command_args which contains the command line | |
40 ;;; (3) mod to re-parse command line arguments from emacs_command_args | |
41 ;;; then execute them as though emacs were just starting up. | |
42 ;;; | |
43 (defun vms-pmail-save-and-exit () | |
73737
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
44 "Save current buffer and exit Emacs. |
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
45 If this Emacs cannot be suspended, you will be prompted about modified |
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
46 buffers other than the mail buffer. BEWARE --- suspending Emacs without |
1190 | 47 saving your mail buffer causes mail to abort the send (potentially useful |
48 since the mail buffer is still here)." | |
49 (interactive) | |
50 (basic-save-buffer) | |
51 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS") | |
52 (progn | |
53 (save-some-buffers) | |
54 (kill-emacs 1)) | |
55 (kill-buffer (current-buffer)) | |
56 (suspend-emacs))) | |
57 | |
58 (defun vms-pmail-abort () | |
73737
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
59 "Mark buffer as unmodified and exit Emacs. |
1190 | 60 When the editor is exited without saving its buffer, VMS mail does not |
61 send a message. If you have other modified buffers you will be | |
62 prompted for what to do with them." | |
63 (interactive) | |
64 (if (not (yes-or-no-p "Really abort mail? ")) | |
65 (ding) | |
66 (not-modified) | |
67 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS") | |
68 (progn | |
69 (save-some-buffers) | |
70 (kill-emacs 1)) | |
71 (kill-buffer (current-buffer)) | |
72 (suspend-emacs)))) | |
73 | |
74 (defun vms-pmail-setup () | |
75 "Set up file assuming use by VMS MAIL utility. | |
76 The buffer is put into text-mode, auto-save is turned off and the | |
77 following bindings are established. | |
78 | |
79 \\[vms-pmail-save-and-exit] vms-pmail-save-and-exit | |
80 \\[vms-pmail-abort] vms-pmail-abort | |
81 | |
73737
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
82 All other Emacs commands are still available." |
1190 | 83 (interactive) |
84 (auto-save-mode -1) | |
85 (text-mode) | |
86 (let ((default (vms-system-info "LOGICAL" "SYS$SCRATCH")) | |
87 (directory (file-name-directory (buffer-file-name))) | |
88 (filename (file-name-nondirectory (buffer-file-name)))) | |
89 (if (string= directory "SYS$SCRATCH:") | |
90 (progn | |
91 (cd default) | |
92 (setq buffer-file-name (concat default filename)))) | |
93 (use-local-map (copy-keymap (current-local-map))) | |
94 (local-set-key "\C-c\C-c" 'vms-pmail-save-and-exit) | |
95 (local-set-key "\C-c\C-g" 'vms-pmail-abort))) | |
96 | |
97 (defun indicate-mail-reply-text () | |
98 "Prepares received mail for re-sending by placing >'s on each line." | |
99 (interactive) | |
100 (goto-char (point-min)) | |
101 (while (not (eobp)) | |
102 (insert ">") | |
103 (beginning-of-line) | |
104 (forward-line 1)) | |
105 (set-buffer-modified-p nil) | |
106 (goto-char (point-min))) | |
107 | |
108 (defun insert-signature () | |
109 "Moves to the end of the buffer and inserts a \"signature\" file. | |
110 First try the file indicated by environment variable MAIL$TRAILER. | |
111 If that fails, try the file \"~/.signature\". | |
112 If neither file exists, fails quietly." | |
113 (interactive) | |
85529
84efd7d3c35e
* mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78232
diff
changeset
|
114 (goto-char (point-max)) |
1190 | 115 (newline) |
116 (if (vms-system-info "LOGICAL" "MAIL$TRAILER") | |
117 (if (file-attributes (vms-system-info "LOGICAL" "MAIL$TRAILER")) | |
118 (insert-file-contents (vms-system-info "LOGICAL" "MAIL$TRAILER")) | |
119 (if (file-attributes "~/.signature") | |
120 (insert-file-contents "~/.signature"))))) | |
121 | |
18383 | 122 (provide 'vms-pmail) |
123 | |
52401 | 124 ;;; arch-tag: 336850fc-7812-4663-8e4d-b9c13f47dce1 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1190
diff
changeset
|
125 ;;; vms-pmail.el ends here |