Mercurial > emacs
annotate lisp/mail/rmailedit.el @ 37664:74b3a3b5aa87
(eshell-convert-numeric-arguments): Annotated the documentation string
to tell users about `eshell-no-numeric-conversions'.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Thu, 10 May 2001 03:51:34 +0000 |
parents | 58918e5712d6 |
children | 253f761ad37b |
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 |
37588
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
3 ;; Copyright (C) 1985, 1994, 2001 Free Software Foundation, Inc. |
845 | 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
36 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
25 ;;; Code: |
36 | 26 |
27 (require 'rmail) | |
28 | |
37588
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
29 (defcustom rmail-edit-mode-hook nil |
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
30 "List of functions to call when editing an RMAIL message." |
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
31 :type 'hook |
37601
58918e5712d6
(rmail-edit-mode-hook): Add :version.
Gerd Moellmann <gerd@gnu.org>
parents:
37588
diff
changeset
|
32 :version "21.1" |
37588
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
33 :group 'rmail-edit) |
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
34 |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
35 (defvar rmail-old-text) |
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
36 |
36 | 37 (defvar rmail-edit-map nil) |
38 (if rmail-edit-map | |
39 nil | |
4179
dfc4e9e14d24
(rmail-edit-map): Inherit properly from text-mode-map;
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
40 ;; Make a keymap that inherits text-mode-map. |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
41 (setq rmail-edit-map (make-sparse-keymap)) |
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
42 (set-keymap-parent rmail-edit-map text-mode-map) |
36 | 43 (define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit) |
44 (define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit)) | |
45 | |
46 ;; Rmail Edit mode is suitable only for specially formatted data. | |
47 (put 'rmail-edit-mode 'mode-class 'special) | |
48 | |
49 (defun rmail-edit-mode () | |
50 "Major mode for editing the contents of an RMAIL message. | |
51 The editing commands are the same as in Text mode, together with two commands | |
52 to return to regular RMAIL: | |
37588
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
53 * \\[rmail-abort-edit] cancels the changes |
36 | 54 you have made and returns to RMAIL |
37588
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
55 * \\[rmail-cease-edit] makes them permanent. |
9adbbd869684
(rmail-edit-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26485
diff
changeset
|
56 This functions runs the normal hook `rmail-edit-mode-hook'. |
36 | 57 \\{rmail-edit-map}" |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
58 (text-mode) |
36 | 59 (use-local-map rmail-edit-map) |
60 (setq major-mode 'rmail-edit-mode) | |
61 (setq mode-name "RMAIL Edit") | |
62 (if (boundp 'mode-line-modified) | |
63 (setq mode-line-modified (default-value 'mode-line-modified)) | |
64 (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
|
65 (if (rmail-summary-exists) |
6726 | 66 (save-excursion |
67 (set-buffer rmail-summary-buffer) | |
68 (rmail-summary-disable))) | |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
69 (run-hooks 'rmail-edit-mode-hook)) |
36 | 70 |
22264
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
71 (defvar rmail-old-pruned nil) |
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
72 (put 'rmail-old-pruned 'permanent-local t) |
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
73 |
22752
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
74 (defvar rmail-edit-saved-coding-system nil) |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
75 (put 'rmail-edit-saved-coding-system 'permanent-local t) |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
76 |
16347
d710d3502336
(rmail-edit-current-message): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
14326
diff
changeset
|
77 ;;;###autoload |
36 | 78 (defun rmail-edit-current-message () |
79 "Edit the contents of this message." | |
80 (interactive) | |
22264
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
81 (make-local-variable 'rmail-old-pruned) |
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
82 (setq rmail-old-pruned (rmail-msg-is-pruned)) |
22752
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
83 (make-local-variable 'rmail-edit-saved-coding-system) |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
84 (setq rmail-edit-saved-coding-system save-buffer-coding-system) |
22264
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
85 (rmail-toggle-header 0) |
36 | 86 (rmail-edit-mode) |
22752
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
87 ;; As the local value of save-buffer-coding-system is deleted by |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
88 ;; rmail-edit-mode, we restore the original value. |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
89 (make-local-variable 'save-buffer-coding-system) |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
90 (setq save-buffer-coding-system rmail-edit-saved-coding-system) |
36 | 91 (make-local-variable 'rmail-old-text) |
92 (setq rmail-old-text (buffer-substring (point-min) (point-max))) | |
93 (setq buffer-read-only nil) | |
11573
4ad650d4a65b
(rmail-edit-current-message): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
8498
diff
changeset
|
94 (force-mode-line-update) |
36 | 95 (if (and (eq (key-binding "\C-c\C-c") 'rmail-cease-edit) |
96 (eq (key-binding "\C-c\C-]") 'rmail-abort-edit)) | |
97 (message "Editing: Type C-c C-c to return to Rmail, C-c C-] to abort") | |
14326
e5799768c51b
(rmail-edit-current-message): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
98 (message "%s" (substitute-command-keys |
22264
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
99 "Editing: Type \\[rmail-cease-edit] to return to Rmail, \\[rmail-abort-edit] to abort")))) |
36 | 100 |
101 (defun rmail-cease-edit () | |
102 "Finish editing message; switch back to Rmail proper." | |
103 (interactive) | |
6723
6ff74185a672
(rmail-edit-mode, rmail-cease-edit): Disable summary during edit.
Karl Heuer <kwzh@gnu.org>
parents:
5851
diff
changeset
|
104 (if (rmail-summary-exists) |
6726 | 105 (save-excursion |
106 (set-buffer rmail-summary-buffer) | |
107 (rmail-summary-enable))) | |
36 | 108 ;; Make sure buffer ends with a newline. |
109 (save-excursion | |
110 (goto-char (point-max)) | |
111 (if (/= (preceding-char) ?\n) | |
112 (insert "\n")) | |
113 ;; Adjust the marker that points to the end of this message. | |
114 (set-marker (aref rmail-message-vector (1+ rmail-current-message)) | |
115 (point))) | |
116 (let ((old rmail-old-text)) | |
11573
4ad650d4a65b
(rmail-edit-current-message): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
8498
diff
changeset
|
117 (force-mode-line-update) |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
118 (kill-all-local-variables) |
36 | 119 (rmail-mode-1) |
21436
779c7dcd4c04
(rmail-cease-edit): Call kill-all-local-variables.
Karl Heuer <kwzh@gnu.org>
parents:
16347
diff
changeset
|
120 (rmail-variables) |
22752
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
121 ;; As the local value of save-buffer-coding-system is changed by |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
122 ;; rmail-variables, we restore the original value. |
00d24401ca1e
(rmail-edit-current-message, rmail-cease-edit):
Richard M. Stallman <rms@gnu.org>
parents:
22264
diff
changeset
|
123 (setq save-buffer-coding-system rmail-edit-saved-coding-system) |
36 | 124 (if (and (= (length old) (- (point-max) (point-min))) |
125 (string= old (buffer-substring (point-min) (point-max)))) | |
126 () | |
127 (setq old nil) | |
128 (rmail-set-attribute "edited" t) | |
129 (if (boundp 'rmail-summary-vector) | |
130 (progn | |
131 (aset rmail-summary-vector (1- rmail-current-message) nil) | |
132 (save-excursion | |
133 (rmail-widen-to-current-msgbeg | |
21877
ed912554aac6
(rmail-cease-edit): Call rmail-show-message even if message text is unchanged.
Richard M. Stallman <rms@gnu.org>
parents:
21436
diff
changeset
|
134 (function (lambda () |
36 | 135 (forward-line 2) |
136 (if (looking-at "Summary-line: ") | |
137 (let ((buffer-read-only nil)) | |
138 (delete-region (point) | |
139 (progn (forward-line 1) | |
21877
ed912554aac6
(rmail-cease-edit): Call rmail-show-message even if message text is unchanged.
Richard M. Stallman <rms@gnu.org>
parents:
21436
diff
changeset
|
140 (point)))))))))))) |
ed912554aac6
(rmail-cease-edit): Call rmail-show-message even if message text is unchanged.
Richard M. Stallman <rms@gnu.org>
parents:
21436
diff
changeset
|
141 (save-excursion |
22264
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
142 (rmail-show-message) |
225596bc6090
(rmail-old-pruned): New permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
21877
diff
changeset
|
143 (rmail-toggle-header (if rmail-old-pruned 1 0)))) |
26485
d1f081e4844a
(rmail-cease-edit): Run rmail-mode-hook.
Gerd Moellmann <gerd@gnu.org>
parents:
22752
diff
changeset
|
144 (run-hooks 'rmail-mode-hook) |
36 | 145 (setq buffer-read-only t)) |
146 | |
147 (defun rmail-abort-edit () | |
148 "Abort edit of current message; restore original contents." | |
149 (interactive) | |
150 (delete-region (point-min) (point-max)) | |
151 (insert rmail-old-text) | |
8498
ba1acb3cf835
(rmail-abort-edit): Call `rmail-highlight-headers'.
Richard M. Stallman <rms@gnu.org>
parents:
7562
diff
changeset
|
152 (rmail-cease-edit) |
ba1acb3cf835
(rmail-abort-edit): Call `rmail-highlight-headers'.
Richard M. Stallman <rms@gnu.org>
parents:
7562
diff
changeset
|
153 (rmail-highlight-headers)) |
36 | 154 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
368
diff
changeset
|
155 ;;; rmailedit.el ends here |