From c95620027d002e681e9dd192183233f904884eca Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 19 Jan 1999 08:14:14 +0000 Subject: [PATCH] * (message-reply): Cancel the last change. (message-followup): Cancel the last change. (message-wide-reply): Cancel the last change. --- lisp/message.el | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/lisp/message.el b/lisp/message.el index 178d0e7..08564c9 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -4,10 +4,9 @@ ;; Author: Lars Magne Ingebrigtsen ;; MORIOKA Tomohiko ;; Shuhei KOBAYASHI -;; Keiichi Suzuki +;; Keiichi Suzuki ;; Tatsuya Ichikawa -;; Katsumi Yamaoka -;; Kiyokazu SUTO +;; Katsumi Yamaoka ;; Keywords: mail, news, MIME ;; This file is part of GNU Emacs. @@ -3865,12 +3864,12 @@ OTHER-HEADERS is an alist of header/value pairs." (Subject . ,(or subject "")))))) ;;;###autoload -(defun message-reply (&optional to-address wide references) +(defun message-reply (&optional to-address wide) "Start editing a reply to the article in the current buffer." (interactive) (let ((cur (current-buffer)) from subject date to cc - message-id follow-to + references message-id follow-to (inhibit-point-motion-hooks t) mct never-mct mft mrt gnus-warning) (save-restriction @@ -3889,7 +3888,7 @@ OTHER-HEADERS is an alist of header/value pairs." (setq from (message-fetch-field "from") date (message-fetch-field "date" t) subject (or (message-fetch-field "subject") "none") - references (or references (message-fetch-field "references")) + references (message-fetch-field "references") message-id (message-fetch-field "message-id" t) to (message-fetch-field "to") cc (message-fetch-field "cc") @@ -4021,19 +4020,19 @@ that further discussion should take place only in " cur))) ;;;###autoload -(defun message-wide-reply (&optional to-address references) +(defun message-wide-reply (&optional to-address) "Make a \"wide\" reply to the message in the current buffer." (interactive) - (message-reply to-address t references)) + (message-reply to-address t)) ;;;###autoload -(defun message-followup (&optional to-newsgroups references) +(defun message-followup (&optional to-newsgroups) "Follow up to the message in the current buffer. If TO-NEWSGROUPS, use that as the new Newsgroups line." (interactive) (let ((cur (current-buffer)) from subject date mct - message-id follow-to + references message-id follow-to (inhibit-point-motion-hooks t) (message-this-is-news t) followup-to distribution newsgroups gnus-warning posted-to mft mrt) -- 1.7.10.4