From 7b1fbd372aa9b593b11d23c545b0d9cf4483af31 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Thu, 4 Nov 2004 06:25:01 +0000 Subject: [PATCH] Synch to No Gnus 200411040624. --- lisp/ChangeLog | 6 ++++++ lisp/gnus-art.el | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a9d404..232ecff 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2004-11-04 Katsumi Yamaoka + + * gnus-art. (gnus-article-edit-article): Don't associate the + article buffer with a draft file. This is a temporary measure + against the 2004-08-22 change to gnus-article-edit-mode. + 2004-11-02 Katsumi Yamaoka * html2text.el (html2text-get-attr): Remove unused argument `tag'. diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index 6a8f68c..ee31111 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -6000,7 +6000,10 @@ groups." "Start editing the contents of the current article buffer." (let ((winconf (current-window-configuration))) (set-buffer gnus-article-buffer) - (gnus-article-edit-mode) + (let ((message-auto-save-directory + ;; Don't associate the article buffer with a draft file. + nil)) + (gnus-article-edit-mode)) (funcall start-func) (set-buffer-modified-p nil) (gnus-configure-windows 'edit-article) -- 1.7.10.4