* (message-draft-coding-system): Don't Call `coding-system-p'.
authoryamaoka <yamaoka>
Mon, 11 Jan 1999 11:16:35 +0000 (11:16 +0000)
committeryamaoka <yamaoka>
Mon, 11 Jan 1999 11:16:35 +0000 (11:16 +0000)
Find its default value using `find-coding-system' instead.

lisp/message.el

index dfd744a..59ea887 100644 (file)
@@ -1035,10 +1035,10 @@ The cdr of ech entry is a function for applying the face to a region.")
 
 (defvar message-draft-coding-system 
   (cond 
-   ((not (fboundp 'coding-system-p)) nil)
-   ((coding-system-p 'emacs-mule) 'emacs-mule)
-   ((coding-system-p 'escape-quoted) 'escape-quoted)
-   ((coding-system-p 'no-conversion) 'no-conversion)
+   ((not (fboundp 'find-coding-system)) nil)
+   ((find-coding-system 'emacs-mule) 'emacs-mule)
+   ((find-coding-system 'escape-quoted) 'escape-quoted)
+   ((find-coding-system 'no-conversion) 'no-conversion)
    (t nil))
   "Coding system to compose mail.")