(gnus-article-edit-article): Don't associate the article buffer with
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 4 Nov 2004 06:24:21 +0000 (06:24 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 4 Nov 2004 06:24:21 +0000 (06:24 +0000)
 a draft file.  This is a temporary measure against the 2004-08-22
 change to gnus-article-edit-mode.

lisp/ChangeLog
lisp/gnus-art.el

index cbdbf8c..e667a86 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * 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  <yamaoka@jpl.org>
 
        * html2text.el (html2text-get-attr): Remove unused argument `tag'.
index 53e03b6..ad9213e 100644 (file)
@@ -5625,7 +5625,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)