2001-07-15 16:15:35 +00:00
|
|
|
;;; rmailedit.el --- "RMAIL edit mode" Edit the current message
|
1992-05-30 21:11:25 +00:00
|
|
|
|
2005-08-06 19:51:42 +00:00
|
|
|
;; Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004,
|
2006-02-06 12:31:40 +00:00
|
|
|
;; 2005, 2006 Free Software Foundation, Inc.
|
1992-07-22 04:22:30 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Maintainer: FSF
|
1992-07-17 20:24:00 +00:00
|
|
|
;; Keywords: mail
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-07-16 21:47:34 +00:00
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1989-10-31 16:00:07 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 17:55:18 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
(require 'rmail)
|
|
|
|
|
2001-05-07 09:59:43 +00:00
|
|
|
(defcustom rmail-edit-mode-hook nil
|
|
|
|
"List of functions to call when editing an RMAIL message."
|
|
|
|
:type 'hook
|
2001-05-07 11:27:36 +00:00
|
|
|
:version "21.1"
|
2001-05-07 09:59:43 +00:00
|
|
|
:group 'rmail-edit)
|
|
|
|
|
1998-04-08 19:03:00 +00:00
|
|
|
(defvar rmail-old-text)
|
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
(defvar rmail-edit-map nil)
|
|
|
|
(if rmail-edit-map
|
|
|
|
nil
|
1993-07-20 05:21:25 +00:00
|
|
|
;; Make a keymap that inherits text-mode-map.
|
1998-04-08 19:03:00 +00:00
|
|
|
(setq rmail-edit-map (make-sparse-keymap))
|
|
|
|
(set-keymap-parent rmail-edit-map text-mode-map)
|
1989-10-31 16:00:07 +00:00
|
|
|
(define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit)
|
|
|
|
(define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit))
|
|
|
|
|
|
|
|
;; Rmail Edit mode is suitable only for specially formatted data.
|
|
|
|
(put 'rmail-edit-mode 'mode-class 'special)
|
|
|
|
|
|
|
|
(defun rmail-edit-mode ()
|
|
|
|
"Major mode for editing the contents of an RMAIL message.
|
|
|
|
The editing commands are the same as in Text mode, together with two commands
|
|
|
|
to return to regular RMAIL:
|
2001-05-07 09:59:43 +00:00
|
|
|
* \\[rmail-abort-edit] cancels the changes
|
1989-10-31 16:00:07 +00:00
|
|
|
you have made and returns to RMAIL
|
2001-05-07 09:59:43 +00:00
|
|
|
* \\[rmail-cease-edit] makes them permanent.
|
|
|
|
This functions runs the normal hook `rmail-edit-mode-hook'.
|
1989-10-31 16:00:07 +00:00
|
|
|
\\{rmail-edit-map}"
|
2005-06-14 12:08:43 +00:00
|
|
|
(delay-mode-hooks (text-mode))
|
1989-10-31 16:00:07 +00:00
|
|
|
(use-local-map rmail-edit-map)
|
|
|
|
(setq major-mode 'rmail-edit-mode)
|
|
|
|
(setq mode-name "RMAIL Edit")
|
|
|
|
(if (boundp 'mode-line-modified)
|
|
|
|
(setq mode-line-modified (default-value 'mode-line-modified))
|
|
|
|
(setq mode-line-format (default-value 'mode-line-format)))
|
1994-04-07 06:56:25 +00:00
|
|
|
(if (rmail-summary-exists)
|
1994-04-07 07:26:49 +00:00
|
|
|
(save-excursion
|
|
|
|
(set-buffer rmail-summary-buffer)
|
|
|
|
(rmail-summary-disable)))
|
2005-05-26 15:17:14 +00:00
|
|
|
(run-mode-hooks 'rmail-edit-mode-hook))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
1998-05-27 21:06:10 +00:00
|
|
|
(defvar rmail-old-pruned nil)
|
|
|
|
(put 'rmail-old-pruned 'permanent-local t)
|
|
|
|
|
1998-07-13 22:04:35 +00:00
|
|
|
(defvar rmail-edit-saved-coding-system nil)
|
|
|
|
(put 'rmail-edit-saved-coding-system 'permanent-local t)
|
|
|
|
|
1996-09-27 00:31:16 +00:00
|
|
|
;;;###autoload
|
1989-10-31 16:00:07 +00:00
|
|
|
(defun rmail-edit-current-message ()
|
|
|
|
"Edit the contents of this message."
|
|
|
|
(interactive)
|
1998-05-27 21:06:10 +00:00
|
|
|
(make-local-variable 'rmail-old-pruned)
|
|
|
|
(setq rmail-old-pruned (rmail-msg-is-pruned))
|
1998-07-13 22:04:35 +00:00
|
|
|
(make-local-variable 'rmail-edit-saved-coding-system)
|
|
|
|
(setq rmail-edit-saved-coding-system save-buffer-coding-system)
|
1998-05-27 21:06:10 +00:00
|
|
|
(rmail-toggle-header 0)
|
1989-10-31 16:00:07 +00:00
|
|
|
(rmail-edit-mode)
|
1998-07-13 22:04:35 +00:00
|
|
|
;; As the local value of save-buffer-coding-system is deleted by
|
|
|
|
;; rmail-edit-mode, we restore the original value.
|
|
|
|
(make-local-variable 'save-buffer-coding-system)
|
|
|
|
(setq save-buffer-coding-system rmail-edit-saved-coding-system)
|
1989-10-31 16:00:07 +00:00
|
|
|
(make-local-variable 'rmail-old-text)
|
|
|
|
(setq rmail-old-text (buffer-substring (point-min) (point-max)))
|
|
|
|
(setq buffer-read-only nil)
|
1995-04-25 22:26:42 +00:00
|
|
|
(force-mode-line-update)
|
1989-10-31 16:00:07 +00:00
|
|
|
(if (and (eq (key-binding "\C-c\C-c") 'rmail-cease-edit)
|
|
|
|
(eq (key-binding "\C-c\C-]") 'rmail-abort-edit))
|
|
|
|
(message "Editing: Type C-c C-c to return to Rmail, C-c C-] to abort")
|
1996-01-25 00:56:48 +00:00
|
|
|
(message "%s" (substitute-command-keys
|
1998-05-27 21:06:10 +00:00
|
|
|
"Editing: Type \\[rmail-cease-edit] to return to Rmail, \\[rmail-abort-edit] to abort"))))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
(defun rmail-cease-edit ()
|
|
|
|
"Finish editing message; switch back to Rmail proper."
|
|
|
|
(interactive)
|
1994-04-07 06:56:25 +00:00
|
|
|
(if (rmail-summary-exists)
|
1994-04-07 07:26:49 +00:00
|
|
|
(save-excursion
|
|
|
|
(set-buffer rmail-summary-buffer)
|
|
|
|
(rmail-summary-enable)))
|
1989-10-31 16:00:07 +00:00
|
|
|
;; Make sure buffer ends with a newline.
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-max))
|
|
|
|
(if (/= (preceding-char) ?\n)
|
|
|
|
(insert "\n"))
|
|
|
|
;; Adjust the marker that points to the end of this message.
|
|
|
|
(set-marker (aref rmail-message-vector (1+ rmail-current-message))
|
|
|
|
(point)))
|
|
|
|
(let ((old rmail-old-text))
|
1995-04-25 22:26:42 +00:00
|
|
|
(force-mode-line-update)
|
1998-04-08 19:03:00 +00:00
|
|
|
(kill-all-local-variables)
|
1989-10-31 16:00:07 +00:00
|
|
|
(rmail-mode-1)
|
1998-04-08 19:03:00 +00:00
|
|
|
(rmail-variables)
|
1998-07-13 22:04:35 +00:00
|
|
|
;; As the local value of save-buffer-coding-system is changed by
|
|
|
|
;; rmail-variables, we restore the original value.
|
|
|
|
(setq save-buffer-coding-system rmail-edit-saved-coding-system)
|
1989-10-31 16:00:07 +00:00
|
|
|
(if (and (= (length old) (- (point-max) (point-min)))
|
|
|
|
(string= old (buffer-substring (point-min) (point-max))))
|
|
|
|
()
|
|
|
|
(setq old nil)
|
|
|
|
(rmail-set-attribute "edited" t)
|
|
|
|
(if (boundp 'rmail-summary-vector)
|
|
|
|
(progn
|
|
|
|
(aset rmail-summary-vector (1- rmail-current-message) nil)
|
|
|
|
(save-excursion
|
|
|
|
(rmail-widen-to-current-msgbeg
|
1998-05-01 03:14:40 +00:00
|
|
|
(function (lambda ()
|
1989-10-31 16:00:07 +00:00
|
|
|
(forward-line 2)
|
|
|
|
(if (looking-at "Summary-line: ")
|
|
|
|
(let ((buffer-read-only nil))
|
|
|
|
(delete-region (point)
|
|
|
|
(progn (forward-line 1)
|
1998-05-01 03:14:40 +00:00
|
|
|
(point))))))))))))
|
|
|
|
(save-excursion
|
1998-05-27 21:06:10 +00:00
|
|
|
(rmail-show-message)
|
|
|
|
(rmail-toggle-header (if rmail-old-pruned 1 0))))
|
1999-11-18 13:11:37 +00:00
|
|
|
(run-hooks 'rmail-mode-hook)
|
1989-10-31 16:00:07 +00:00
|
|
|
(setq buffer-read-only t))
|
|
|
|
|
|
|
|
(defun rmail-abort-edit ()
|
|
|
|
"Abort edit of current message; restore original contents."
|
|
|
|
(interactive)
|
|
|
|
(delete-region (point-min) (point-max))
|
|
|
|
(insert rmail-old-text)
|
1994-08-09 23:09:27 +00:00
|
|
|
(rmail-cease-edit)
|
|
|
|
(rmail-highlight-headers))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
2002-11-15 05:25:19 +00:00
|
|
|
(provide 'rmailedit)
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
;;; arch-tag: 93c22709-a14a-46c1-ab91-52c3f5a0ec12
|
1992-05-30 21:11:25 +00:00
|
|
|
;;; rmailedit.el ends here
|