Mercurial > emacs
annotate lisp/mail/vms-pmail.el @ 95917:c46e112bded0
Comment fix for rms.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 14 Jun 2008 19:14:01 +0000 |
parents | ef65fa4dca3b |
children |
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, |
79712 | 5 ;; 2006, 2007, 2008 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 | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
1190 | 14 ;; it under the terms of the GNU General Public License as published by |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
16 ;; (at your option) any later version. |
1190 | 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 | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
1190 | 25 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30285
diff
changeset
|
26 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30285
diff
changeset
|
27 |
1190 | 28 ;;; Code: |
29 | |
30 ;;; | |
31 ;;; Quick hack to use emacs as mail editor. There are a *bunch* of | |
32 ;;; changes scattered throughout emacs to make this work, namely: | |
33 ;;; (1) mod to sysdep.c to allow emacs to attach to a process other | |
34 ;;; than the one that originally spawned it. | |
35 ;;; (2) mod to kepteditor.com to define the logical emacs_parent_pid | |
36 ;;; which is what sysdep.c looks for, and define the logical | |
37 ;;; emacs_command_args which contains the command line | |
38 ;;; (3) mod to re-parse command line arguments from emacs_command_args | |
39 ;;; then execute them as though emacs were just starting up. | |
40 ;;; | |
41 (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
|
42 "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
|
43 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
|
44 buffers other than the mail buffer. BEWARE --- suspending Emacs without |
1190 | 45 saving your mail buffer causes mail to abort the send (potentially useful |
46 since the mail buffer is still here)." | |
47 (interactive) | |
48 (basic-save-buffer) | |
49 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS") | |
50 (progn | |
51 (save-some-buffers) | |
52 (kill-emacs 1)) | |
53 (kill-buffer (current-buffer)) | |
54 (suspend-emacs))) | |
55 | |
56 (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
|
57 "Mark buffer as unmodified and exit Emacs. |
1190 | 58 When the editor is exited without saving its buffer, VMS mail does not |
59 send a message. If you have other modified buffers you will be | |
60 prompted for what to do with them." | |
61 (interactive) | |
62 (if (not (yes-or-no-p "Really abort mail? ")) | |
63 (ding) | |
64 (not-modified) | |
65 (if (vms-system-info "LOGICAL" "DONT_SUSPEND_EMACS") | |
66 (progn | |
67 (save-some-buffers) | |
68 (kill-emacs 1)) | |
69 (kill-buffer (current-buffer)) | |
70 (suspend-emacs)))) | |
71 | |
72 (defun vms-pmail-setup () | |
73 "Set up file assuming use by VMS MAIL utility. | |
74 The buffer is put into text-mode, auto-save is turned off and the | |
75 following bindings are established. | |
76 | |
77 \\[vms-pmail-save-and-exit] vms-pmail-save-and-exit | |
78 \\[vms-pmail-abort] vms-pmail-abort | |
79 | |
73737
401ef839523a
(vms-pmail-save-and-exit, vms-pmail-abort, vms-pmail-setup):
Juanma Barranquero <lekktu@gmail.com>
parents:
68648
diff
changeset
|
80 All other Emacs commands are still available." |
1190 | 81 (interactive) |
82 (auto-save-mode -1) | |
83 (text-mode) | |
84 (let ((default (vms-system-info "LOGICAL" "SYS$SCRATCH")) | |
85 (directory (file-name-directory (buffer-file-name))) | |
86 (filename (file-name-nondirectory (buffer-file-name)))) | |
87 (if (string= directory "SYS$SCRATCH:") | |
88 (progn | |
89 (cd default) | |
90 (setq buffer-file-name (concat default filename)))) | |
91 (use-local-map (copy-keymap (current-local-map))) | |
92 (local-set-key "\C-c\C-c" 'vms-pmail-save-and-exit) | |
93 (local-set-key "\C-c\C-g" 'vms-pmail-abort))) | |
94 | |
95 (defun indicate-mail-reply-text () | |
96 "Prepares received mail for re-sending by placing >'s on each line." | |
97 (interactive) | |
98 (goto-char (point-min)) | |
99 (while (not (eobp)) | |
100 (insert ">") | |
101 (beginning-of-line) | |
102 (forward-line 1)) | |
103 (set-buffer-modified-p nil) | |
104 (goto-char (point-min))) | |
105 | |
106 (defun insert-signature () | |
107 "Moves to the end of the buffer and inserts a \"signature\" file. | |
108 First try the file indicated by environment variable MAIL$TRAILER. | |
109 If that fails, try the file \"~/.signature\". | |
110 If neither file exists, fails quietly." | |
111 (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
|
112 (goto-char (point-max)) |
1190 | 113 (newline) |
114 (if (vms-system-info "LOGICAL" "MAIL$TRAILER") | |
115 (if (file-attributes (vms-system-info "LOGICAL" "MAIL$TRAILER")) | |
116 (insert-file-contents (vms-system-info "LOGICAL" "MAIL$TRAILER")) | |
117 (if (file-attributes "~/.signature") | |
118 (insert-file-contents "~/.signature"))))) | |
119 | |
18383 | 120 (provide 'vms-pmail) |
121 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
122 ;; arch-tag: 336850fc-7812-4663-8e4d-b9c13f47dce1 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1190
diff
changeset
|
123 ;;; vms-pmail.el ends here |