2002-11-06 Katsumi Yamaoka <yamaoka@jpl.org>
+ * lisp/nndraft.el (nndraft-request-article): Don't give a special
+ treatment to Mule.
+
* lisp/nnheader.el (nnheader-auto-save-coding-system): Undo last
change to restore the default value to emacs-mule or escape-quoted.
2002-11-06 Katsumi Yamaoka <yamaoka@jpl.org>
+ * nndraft.el (nndraft-request-article): Replace emacs-mule with
+ mm-auto-save-coding-system.
+
* message.el (message-draft-coding-system): Default to
iso-2022-7bit.
;; files may have been saved using that coding-system.
(maybe-emacs-mule-p (and (not (featurep 'xemacs))
(not (equal "queue" group))
- (static-if (boundp 'MULE)
- (eq message-draft-coding-system
- ;; The present default value.
- '*iso-2022-jp*)
- (eq message-draft-coding-system
- ;; The present default value.
- 'iso-2022-7bit)))))
+ (eq message-draft-coding-system
+ ;; The present default value.
+ 'iso-2022-7bit)
+ (find-coding-system 'emacs-mule))))
(when (and (file-exists-p newest)
(if (equal "queue" group)
(nnmail-find-file newest)
(when maybe-emacs-mule-p
(goto-char (point-min))
(if (re-search-forward "[^\000-\177]" nil t)
- ;; Consider the file has been saved using `emacs-mule'.
+ ;; Consider the file has been saved as `emacs-mule'.
(decode-coding-region (point-min) (point-max)
- (static-if (boundp 'MULE)
- '*internal*
- 'emacs-mule))
+ nnheader-auto-save-coding-system)
(decode-coding-region (point-min) (point-max)
message-draft-coding-system)))
(goto-char (point-min))