Mercurial > emacs
annotate lisp/mail/rmailedit.el @ 6989:3723e842825c
(compilation-parse-errors): Fix references for column number, 3 elt not
2nd.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Wed, 20 Apr 1994 19:52:37 +0000 |
parents | d6bc6057d197 |
children | cc7cd83ccf3f |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
368
diff
changeset
|
1 ;;; rmailedit.el --- "RMAIL edit mode" Edit the current message. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
368
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
24 ;;; Code: |
36 | 25 |
26 (require 'rmail) | |
27 | |
28 (defvar rmail-edit-map nil) | |
29 (if rmail-edit-map | |
30 nil | |
4179
dfc4e9e14d24
(rmail-edit-map): Inherit properly from text-mode-map;
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
31 ;; Make a keymap that inherits text-mode-map. |
dfc4e9e14d24
(rmail-edit-map): Inherit properly from text-mode-map;
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
32 (setq rmail-edit-map (nconc (make-sparse-keymap) text-mode-map)) |
36 | 33 (define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit) |
34 (define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit)) | |
35 | |
36 ;; Rmail Edit mode is suitable only for specially formatted data. | |
37 (put 'rmail-edit-mode 'mode-class 'special) | |
38 | |
39 (defun rmail-edit-mode () | |
40 "Major mode for editing the contents of an RMAIL message. | |
41 The editing commands are the same as in Text mode, together with two commands | |
42 to return to regular RMAIL: | |
43 * rmail-abort-edit cancels the changes | |
44 you have made and returns to RMAIL | |
45 * rmail-cease-edit makes them permanent. | |
46 \\{rmail-edit-map}" | |
47 (use-local-map rmail-edit-map) | |
48 (setq major-mode 'rmail-edit-mode) | |
49 (setq mode-name "RMAIL Edit") | |
50 (if (boundp 'mode-line-modified) | |
51 (setq mode-line-modified (default-value 'mode-line-modified)) | |
52 (setq mode-line-format (default-value 'mode-line-format))) | |
6723
6ff74185a672
(rmail-edit-mode, rmail-cease-edit): Disable summary during edit.
Karl Heuer <kwzh@gnu.org>
parents:
5851
diff
changeset
|
53 (if (rmail-summary-exists) |
6726 | 54 (save-excursion |
55 (set-buffer rmail-summary-buffer) | |
56 (rmail-summary-disable))) | |
36 | 57 (run-hooks 'text-mode-hook 'rmail-edit-mode-hook)) |
58 | |
59 (defun rmail-edit-current-message () | |
60 "Edit the contents of this message." | |
61 (interactive) | |
62 (rmail-edit-mode) | |
63 (make-local-variable 'rmail-old-text) | |
64 (setq rmail-old-text (buffer-substring (point-min) (point-max))) | |
5851
bdb049c20e39
(rmail-edit-current-message): Make local variables permanent, so
Karl Heuer <kwzh@gnu.org>
parents:
4179
diff
changeset
|
65 (put 'rmail-old-text 'permanent-local t) |
36 | 66 (setq buffer-read-only nil) |
67 (set-buffer-modified-p (buffer-modified-p)) | |
68 ;; Make mode line update. | |
69 (if (and (eq (key-binding "\C-c\C-c") 'rmail-cease-edit) | |
70 (eq (key-binding "\C-c\C-]") 'rmail-abort-edit)) | |
71 (message "Editing: Type C-c C-c to return to Rmail, C-c C-] to abort") | |
72 (message (substitute-command-keys | |
73 "Editing: Type \\[rmail-cease-edit] to return to Rmail, \\[rmail-abort-edit] to abort")))) | |
74 | |
75 (defun rmail-cease-edit () | |
76 "Finish editing message; switch back to Rmail proper." | |
77 (interactive) | |
6723
6ff74185a672
(rmail-edit-mode, rmail-cease-edit): Disable summary during edit.
Karl Heuer <kwzh@gnu.org>
parents:
5851
diff
changeset
|
78 (if (rmail-summary-exists) |
6726 | 79 (save-excursion |
80 (set-buffer rmail-summary-buffer) | |
81 (rmail-summary-enable))) | |
36 | 82 ;; Make sure buffer ends with a newline. |
83 (save-excursion | |
84 (goto-char (point-max)) | |
85 (if (/= (preceding-char) ?\n) | |
86 (insert "\n")) | |
87 ;; Adjust the marker that points to the end of this message. | |
88 (set-marker (aref rmail-message-vector (1+ rmail-current-message)) | |
89 (point))) | |
90 (let ((old rmail-old-text)) | |
91 ;; Update the mode line. | |
92 (set-buffer-modified-p (buffer-modified-p)) | |
93 (rmail-mode-1) | |
94 (if (and (= (length old) (- (point-max) (point-min))) | |
95 (string= old (buffer-substring (point-min) (point-max)))) | |
96 () | |
97 (setq old nil) | |
98 (rmail-set-attribute "edited" t) | |
99 (if (boundp 'rmail-summary-vector) | |
100 (progn | |
101 (aset rmail-summary-vector (1- rmail-current-message) nil) | |
102 (save-excursion | |
103 (rmail-widen-to-current-msgbeg | |
104 (function (lambda () | |
105 (forward-line 2) | |
106 (if (looking-at "Summary-line: ") | |
107 (let ((buffer-read-only nil)) | |
108 (delete-region (point) | |
109 (progn (forward-line 1) | |
110 (point)))))))) | |
111 (rmail-show-message)))))) | |
112 (setq buffer-read-only t)) | |
113 | |
114 (defun rmail-abort-edit () | |
115 "Abort edit of current message; restore original contents." | |
116 (interactive) | |
117 (delete-region (point-min) (point-max)) | |
118 (insert rmail-old-text) | |
119 (rmail-cease-edit)) | |
120 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
368
diff
changeset
|
121 ;;; rmailedit.el ends here |