]> code.delx.au - gnu-emacs/blob - lisp/mail/pmailedit.el
(pmail-edit-saved-coding-system): Var deleted.
[gnu-emacs] / lisp / mail / pmailedit.el
1 ;;; pmailedit.el --- "PMAIL edit mode" Edit the current message
2
3 ;; Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: mail
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile
29 (require 'pmail)
30 (require 'pmailsum))
31
32 (defcustom pmail-edit-mode-hook nil
33 "List of functions to call when editing an PMAIL message."
34 :type 'hook
35 :version "21.1"
36 :group 'pmail-edit)
37
38 (defvar pmail-old-text)
39
40 (defvar pmail-edit-map nil)
41 (if pmail-edit-map
42 nil
43 ;; Make a keymap that inherits text-mode-map.
44 (setq pmail-edit-map (make-sparse-keymap))
45 (set-keymap-parent pmail-edit-map text-mode-map)
46 (define-key pmail-edit-map "\C-c\C-c" 'pmail-cease-edit)
47 (define-key pmail-edit-map "\C-c\C-]" 'pmail-abort-edit))
48
49 ;; Pmail Edit mode is suitable only for specially formatted data.
50 (put 'pmail-edit-mode 'mode-class 'special)
51
52 (declare-function pmail-summary-disable "" ())
53 (declare-function pmail-summary-enable "pmailsum" ())
54
55 (defun pmail-edit-mode ()
56 "Major mode for editing the contents of an PMAIL message.
57 The editing commands are the same as in Text mode, together with two commands
58 to return to regular PMAIL:
59 * \\[pmail-abort-edit] cancels the changes
60 you have made and returns to PMAIL
61 * \\[pmail-cease-edit] makes them permanent.
62 This functions runs the normal hook `pmail-edit-mode-hook'.
63 \\{pmail-edit-map}"
64 (delay-mode-hooks (text-mode))
65 (use-local-map pmail-edit-map)
66 (setq major-mode 'pmail-edit-mode)
67 (setq mode-name "PMAIL Edit")
68 (if (boundp 'mode-line-modified)
69 (setq mode-line-modified (default-value 'mode-line-modified))
70 (setq mode-line-format (default-value 'mode-line-format)))
71 (if (pmail-summary-exists)
72 (save-excursion
73 (set-buffer pmail-summary-buffer)
74 (pmail-summary-disable)))
75 (run-mode-hooks 'pmail-edit-mode-hook))
76
77 (defvar pmail-old-pruned nil)
78 (put 'pmail-old-pruned 'permanent-local t)
79
80 ;;;###autoload
81 (defun pmail-edit-current-message ()
82 "Edit the contents of this message."
83 (interactive)
84 (if (= pmail-total-messages 0)
85 (error "No messages in this file"))
86 (make-local-variable 'pmail-old-pruned)
87 (setq pmail-old-pruned (eq pmail-header-style 'normal))
88 (pmail-edit-mode)
89 (make-local-variable 'pmail-old-text)
90 (setq pmail-old-text (buffer-substring (point-min) (point-max)))
91 (setq buffer-read-only nil)
92 (force-mode-line-update)
93 (if (and (eq (key-binding "\C-c\C-c") 'pmail-cease-edit)
94 (eq (key-binding "\C-c\C-]") 'pmail-abort-edit))
95 (message "Editing: Type C-c C-c to return to Pmail, C-c C-] to abort")
96 (message "%s" (substitute-command-keys
97 "Editing: Type \\[pmail-cease-edit] to return to Pmail, \\[pmail-abort-edit] to abort"))))
98
99 (defun pmail-cease-edit ()
100 "Finish editing message; switch back to Pmail proper."
101 (interactive)
102 (if (pmail-summary-exists)
103 (save-excursion
104 (set-buffer pmail-summary-buffer)
105 (pmail-summary-enable)))
106 ;; Make sure buffer ends with a blank line.
107 (save-excursion
108 (goto-char (point-max))
109 (if (/= (preceding-char) ?\n)
110 (insert "\n"))
111 (unless (looking-back "\n\n")
112 (insert "\n"))
113 ;; Adjust the marker that points to the end of this message.
114 (set-marker (aref pmail-message-vector (1+ pmail-current-message))
115 (point)))
116 (let ((old pmail-old-text))
117 (force-mode-line-update)
118 (kill-all-local-variables)
119 (pmail-mode-1)
120 (if (boundp 'tool-bar-map)
121 (set (make-local-variable 'tool-bar-map) pmail-tool-bar-map))
122 (pmail-variables)
123 (unless (and (= (length old) (- (point-max) (point-min)))
124 (string= old (buffer-substring (point-min) (point-max))))
125 (setq old nil)
126 (pmail-set-attribute pmail-edited-attr-index t)
127 (if (boundp 'pmail-summary-vector)
128 (progn
129 (aset pmail-summary-vector (1- pmail-current-message) nil)
130 (save-excursion
131 (pmail-widen-to-current-msgbeg
132 (function (lambda ()
133 (forward-line 2)
134 (if (looking-at "Summary-line: ")
135 (let ((buffer-read-only nil))
136 (delete-region (point)
137 (progn (forward-line 1)
138 (point))))))))))))
139 (save-excursion
140 (pmail-show-message)
141 (pmail-toggle-header (if pmail-old-pruned 1 0))))
142 (run-hooks 'pmail-mode-hook))
143
144 (defun pmail-abort-edit ()
145 "Abort edit of current message; restore original contents."
146 (interactive)
147 (delete-region (point-min) (point-max))
148 (insert pmail-old-text)
149 (pmail-cease-edit)
150 (pmail-highlight-headers))
151
152 (provide 'pmailedit)
153
154 ;; Local Variables:
155 ;; change-log-default-name: "ChangeLog.pmail"
156 ;; End:
157
158 ;; arch-tag: 9524f335-12cc-4e95-9e9b-3208dc30550b
159 ;;; pmailedit.el ends here