;;;
;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;;; Version:
-;;; $Id: emu-nemacs.el,v 7.0 1995/10/05 12:16:34 morioka Exp $
+;;; $Id: emu-nemacs.el,v 7.1 1995/10/11 11:49:55 morioka Exp $
;;; Keywords: emulation, compatibility, NEmacs, Mule
;;;
;;; This file is part of tl and tm (Tools for MIME).
(reverse dest)
))
+(defun find-charset-string (str)
+ (if (string-match "[\200-\377]" str)
+ (list lc-jp)
+ ))
+
+(defun find-charset-region (start end)
+ (if (save-excursion
+ (save-restriction
+ (narrow-to-region start end)
+ (goto-char start)
+ (re-search-forward "[\200-\377]" nil t)
+ ))
+ (list lc-jp)
+ ))
+
(defun check-ASCII-string (str)
(let ((i 0)
len)