(mime-editor/choose-charset): Use function
authormorioka <morioka>
Wed, 10 Jul 1996 10:58:09 +0000 (10:58 +0000)
committermorioka <morioka>
Wed, 10 Jul 1996 10:58:09 +0000 (10:58 +0000)
`detect-mime-charset-region' instead of `mime/find-charset-region'.

mime-edit.el

index 430bda7..02721fa 100644 (file)
@@ -9,7 +9,7 @@
 ;;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;;; Created: 1994/08/21 renamed from mime.el by UMEDA Masanobu;
 ;;;          1996/05/24 renamed from tm-edit.el
-;;; Version: $Revision: 0.30 $
+;;; Version: $Revision: 0.31 $
 ;;; Keywords: mail, news, MIME, multimedia, multilingual
 ;;;
 ;;; This file is part of SEMI (September, Emacs MIME Interface)
 ;;;
 
 (defconst mime-editor/RCS-ID
-  "$Id: mime-edit.el,v 0.30 1996-07-09 13:24:21 morioka Exp $")
+  "$Id: mime-edit.el,v 0.31 1996-07-10 10:58:09 morioka Exp $")
 
 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
 
@@ -1172,7 +1172,9 @@ Optional argument ENCODING specifies an encoding method such as base64."
 
 (defun mime-editor/choose-charset ()
   "Choose charset of a text following current point."
-  (mime/find-charset-region (point) (mime-editor/content-end))
+  (upcase
+   (symbol-name
+    (detect-mime-charset-region (point) (mime-editor/content-end))))
   )
 
 (defun mime-make-text-tag (&optional subtype)