* lisp/message.el (message-cite-original-without-signature): Extract from t-gnus-6_14_6-02-last-
authoryamaoka <yamaoka>
Thu, 15 Feb 2001 01:09:04 +0000 (01:09 +0000)
committeryamaoka <yamaoka>
Thu, 15 Feb 2001 01:09:04 +0000 (01:09 +0000)
 field for the simple citation line.

ChangeLog
lisp/message.el

index a61a21b..99146cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-15  Katsumi Yamaoka <yamaoka@jpl.org>
+
+       * lisp/message.el (message-cite-original-without-signature):
+       Extract from field for the simple citation line.
+
 2001-02-08  Katsumi Yamaoka <yamaoka@jpl.org>
 
        * lisp/nnshimbun.el (nnshimbun-fml-get-headers): Fix unbalanced
index c9c27a4..c4f86ac 100644 (file)
@@ -2453,7 +2453,18 @@ be added to \"References\" field.
         (when message-indent-citation-function
           (if (listp message-indent-citation-function)
               message-indent-citation-function
-            (list message-indent-citation-function)))))
+            (list message-indent-citation-function))))
+       (message-reply-headers (or message-reply-headers
+                                  (make-mail-header))))
+    (mail-header-set-from message-reply-headers
+                         (save-restriction
+                           (narrow-to-region
+                            (point)
+                            (if (search-forward "\n\n" nil t)
+                                (1- (point))
+                              (point-max)))
+                           (or (message-fetch-field "from")
+                               "unknown sender")))
     ;; Allow undoing.
     (undo-boundary)
     (goto-char end)