1 ;;; mcharset.el --- MIME charset API
3 ;; Copyright (C) 1997,1998,1999,2000 Free Software Foundation, Inc.
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: emulation, compatibility, Mule
8 ;; This file is part of APEL (A Portable Emacs Library).
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
29 (cond ((featurep 'mule)
30 (if (>= emacs-major-version 20)
32 ;; for MULE 1.* and 2.*
35 ;; for Nemacs and Nepoch
36 (require 'mcs-nemacs))
40 (defcustom default-mime-charset-for-write
41 (if (mime-charset-p 'utf-8)
44 "Default value of MIME-charset for encoding.
45 It may be used when suitable MIME-charset is not found.
50 (defcustom default-mime-charset-detect-method-for-write
52 "Function called when suitable MIME-charset is not found to encode.
53 It must be nil or function.
54 If it is nil, variable `default-mime-charset-for-write' is used.
55 If it is a function, interface must be (TYPE CHARSETS &rest ARGS).
56 CHARSETS is list of charset.
57 If TYPE is 'region, ARGS has START and END."
59 :type '(choice function (const nil)))
61 (defun charsets-to-mime-charset (charsets)
62 "Return MIME charset from list of charset CHARSETS.
63 Return nil if suitable mime-charset is not found."
66 (let ((rest charsets-mime-charset-alist)
68 (while (setq cell (car rest))
69 (if (catch 'not-subset
76 (throw 'not-subset nil))
77 (setq set1 (cdr set1)))
79 (throw 'tag (cdr cell)))
80 (setq rest (cdr rest)))
83 (defun find-mime-charset-by-charsets (charsets &optional mode &rest args)
84 "Like `charsets-to-mime-charset', but it does not return nil.
86 When suitable mime-charset is not found and variable
87 `default-mime-charset-detect-method-for-write' is not nil,
88 `find-mime-charset-by-charsets' calls the variable as function and
89 return the return value of the function.
90 Interface of the function is (MODE CHARSETS &rest ARGS).
92 When suitable mime-charset is not found and variable
93 `default-mime-charset-detect-method-for-write' is nil,
94 variable `default-mime-charset-for-write' is returned."
95 (or (charsets-to-mime-charset charsets)
96 (if default-mime-charset-detect-method-for-write
97 (apply default-mime-charset-detect-method-for-write
99 default-mime-charset-for-write)))
106 (product-provide (provide 'mcharset) (require 'apel-ver))
108 ;;; mcharset.el ends here