emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp/mail rmailedit.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp/mail rmailedit.el
Date: Tue, 10 Feb 2009 03:33:48 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/02/10 03:33:48

Modified files:
        lisp/mail      : rmailedit.el 

Log message:
        Just require rmail.
        (rmail-old-pruned): Add doc string.
        (rmail-edit-current-message): Use rmail-msg-is-pruned.
        (rmail-cease-edit): Don't mangle the leading From line.
        Don't mark as edited if there were no changes.  (Bug#2256)
        Correctly restore header state.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/mail/rmailedit.el?cvsroot=emacs&r1=1.49&r2=1.50

Patches:
Index: rmailedit.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/mail/rmailedit.el,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- rmailedit.el        7 Feb 2009 15:16:01 -0000       1.49
+++ rmailedit.el        10 Feb 2009 03:33:48 -0000      1.50
@@ -1,7 +1,7 @@
 ;;; rmailedit.el --- "RMAIL edit mode"  Edit the current message
 
-;; Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006,
-;;   2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;;   2008, 2009  Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: mail
@@ -25,9 +25,7 @@
 
 ;;; Code:
 
-(eval-when-compile
-  (require 'rmail)
-  (require 'rmailsum))
+(require 'rmail)
 
 (defcustom rmail-edit-mode-hook nil
   "List of functions to call when editing an RMAIL message."
@@ -35,7 +33,6 @@
   :version "21.1"
   :group 'rmail-edit)
 
-(defvar rmail-old-text)
 
 (defvar rmail-edit-map
   (let ((map (make-sparse-keymap)))
@@ -45,12 +42,7 @@
     (define-key map "\C-c\C-]" 'rmail-abort-edit)
     map))
 
-
-;; Rmail Edit mode is suitable only for specially formatted data.
-(put 'rmail-edit-mode 'mode-class 'special)
-
 (declare-function rmail-summary-disable "rmailsum" ())
-(declare-function rmail-summary-enable "rmailsum" ())
 
 (defun rmail-edit-mode ()
   "Major mode for editing the contents of an RMAIL message.
@@ -75,24 +67,32 @@
       (setq mode-line-format (default-value 'mode-line-format)))
     (run-mode-hooks 'rmail-edit-mode-hook)))
 
-(defvar rmail-old-pruned nil)
+;; Rmail Edit mode is suitable only for specially formatted data.
+(put 'rmail-edit-mode 'mode-class 'special)
+
+
+(defvar rmail-old-text)
+(defvar rmail-old-pruned nil
+  "Non-nil means the message being edited originally had pruned headers.")
 (put 'rmail-old-pruned 'permanent-local t)
 
 ;;;###autoload
 (defun rmail-edit-current-message ()
   "Edit the contents of this message."
   (interactive)
-  (if (= rmail-total-messages 0)
+  (if (zerop rmail-total-messages)
       (error "No messages in this buffer"))
-  (make-local-variable 'rmail-old-pruned)
-  (setq rmail-old-pruned (eq rmail-header-style 'normal))
+  (set (make-local-variable 'rmail-old-pruned) (rmail-msg-is-pruned))
   (rmail-edit-mode)
-  (make-local-variable 'rmail-old-text)
+  (set (make-local-variable 'rmail-old-text)
   (save-restriction
     (widen)
-    (setq rmail-old-text (buffer-substring (point-min) (point-max))))
+        (buffer-substring (point-min) (point-max))))
   (setq buffer-read-only nil)
   (setq buffer-undo-list nil)
+  ;; FIXME whether the buffer is initially marked as modified or not
+  ;; depends on whether or not the underlying rmail buffer was so marked.
+  ;; Seems poor.
   (force-mode-line-update)
   (if (and (eq (key-binding "\C-c\C-c") 'rmail-cease-edit)
           (eq (key-binding "\C-c\C-]") 'rmail-abort-edit))
@@ -100,6 +100,9 @@
     (message "%s" (substitute-command-keys
                   "Editing: Type \\[rmail-cease-edit] to return to Rmail, 
\\[rmail-abort-edit] to abort"))))
 
+
+(declare-function rmail-summary-enable "rmailsum" ())
+
 (defun rmail-cease-edit ()
   "Finish editing message; switch back to Rmail proper."
   (interactive)
@@ -110,6 +113,7 @@
   ;; Disguise any "From " lines so they don't start a new message.
   (save-excursion
     (goto-char (point-min))
+    (or rmail-old-pruned (forward-line 1))
     (while (re-search-forward "^>*From " nil t)
       (beginning-of-line)
       (insert ">")
@@ -123,6 +127,7 @@
     (unless (looking-back "\n\n")
       (insert "\n")))
   (let ((old rmail-old-text)
+       (pruned rmail-old-pruned)
        character-coding is-text-message coding-system
        headers-end limit)
     ;; Go back to Rmail mode, but carefully.
@@ -142,12 +147,9 @@
       (goto-char (point-min))
       (search-forward "\n\n")
       (setq headers-end (point))
-
       (rmail-swap-buffers-maybe)
-
       (narrow-to-region (rmail-msgbeg rmail-current-message)
                        (rmail-msgend rmail-current-message))
-
       (save-restriction
        (setq limit
              (save-excursion
@@ -172,38 +174,21 @@
                                  data-buffer))
          (delete-region end (point-max)))
 
-       ;; Re-apply content-transfer-encoding, if any, on the message
-       ;; body.
+       ;; Re-apply content-transfer-encoding, if any, on the message body.
        (cond
         ((string= character-coding "quoted-printable")
          (mail-quote-printable-region (point) (point-max)))
         ((and (string= character-coding "base64") is-text-message)
          (base64-encode-region (point) (point-max)))
         ((and (eq character-coding 'uuencode) is-text-message)
-         (error "uuencoded messages are not supported yet.")))
-       ))
-
-    (rmail-set-attribute rmail-edited-attr-index t)
-
+         (error "uuencoded messages are not supported"))))
+      (rmail-set-attribute rmail-edited-attr-index t))
     ;;??? BROKEN perhaps.
-    ;; I think that the Summary-Line header may not be kept there any more.
 ;;;       (if (boundp 'rmail-summary-vector)
-;;;      (progn
-;;;        (aset rmail-summary-vector (1- rmail-current-message) nil)
-;;;        (save-excursion
-;;;          (rmail-widen-to-current-msgbeg
-;;;            (function (lambda ()
-;;;                        (forward-line 2)
-;;;                        (if (looking-at "Summary-line: ")
-;;;                            (let ((buffer-read-only nil))
-;;;                              (delete-region (point)
-;;;                                             (progn (forward-line 1)
-;;;                                                    (point)))))))))))
-    )
-
+;;;    (aset rmail-summary-vector (1- rmail-current-message) nil))
   (save-excursion
     (rmail-show-message)
-    (rmail-toggle-header (if rmail-old-pruned 1 0)))
+      (rmail-toggle-header (if pruned 1 0))))
   (run-hooks 'rmail-mode-hook))
 
 (defun rmail-abort-edit ()




reply via email to

[Prev in Thread] Current Thread [Next in Thread]