Remove arch-tags from all files, since these are no longer needed.
[gnus] / lisp / mm-util.el
1 ;;; mm-util.el --- Utility functions for Mule and low level things
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;;   2007, 2008, 2009, 2010  Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27 ;; For Emacs < 22.2.
28 (eval-and-compile
29   (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
30
31 (eval-when-compile (require 'cl))
32 (require 'mail-prsvr)
33
34 (eval-and-compile
35   (if (featurep 'xemacs)
36       (unless (ignore-errors
37                 (require 'timer-funcs))
38         (require 'timer))
39     (require 'timer)))
40
41 (defvar mm-mime-mule-charset-alist )
42
43 ;; Emulate functions that are not available in every (X)Emacs version.
44 ;; The name of a function is prefixed with mm-, like `mm-char-int' for
45 ;; `char-int' that is a native XEmacs function, not available in Emacs.
46 ;; Gnus programs all should use mm- functions, not the original ones.
47 (eval-and-compile
48   (mapc
49    (lambda (elem)
50      (let ((nfunc (intern (format "mm-%s" (car elem)))))
51        (if (fboundp (car elem))
52            (defalias nfunc (car elem))
53          (defalias nfunc (cdr elem)))))
54    `(;; `coding-system-list' is not available in XEmacs 21.4 built
55      ;; without the `file-coding' feature.
56      (coding-system-list . ignore)
57      ;; `char-int' is an XEmacs function, not available in Emacs.
58      (char-int . identity)
59      ;; `coding-system-equal' is an Emacs function, not available in XEmacs.
60      (coding-system-equal . equal)
61      ;; `annotationp' is an XEmacs function, not available in Emacs.
62      (annotationp . ignore)
63      ;; `set-buffer-file-coding-system' is not available in XEmacs 21.4
64      ;; built without the `file-coding' feature.
65      (set-buffer-file-coding-system . ignore)
66      ;; `read-charset' is an Emacs function, not available in XEmacs.
67      (read-charset
68       . ,(lambda (prompt)
69            "Return a charset."
70            (intern
71             (completing-read
72              prompt
73              (mapcar (lambda (e) (list (symbol-name (car e))))
74                      mm-mime-mule-charset-alist)
75              nil t))))
76      ;; `subst-char-in-string' is not available in XEmacs 21.4.
77      (subst-char-in-string
78       . ,(lambda (from to string &optional inplace)
79            ;; stolen (and renamed) from nnheader.el
80            "Replace characters in STRING from FROM to TO.
81           Unless optional argument INPLACE is non-nil, return a new string."
82            (let ((string (if inplace string (copy-sequence string)))
83                  (len (length string))
84                  (idx 0))
85              ;; Replace all occurrences of FROM with TO.
86              (while (< idx len)
87                (when (= (aref string idx) from)
88                  (aset string idx to))
89                (setq idx (1+ idx)))
90              string)))
91      ;; `replace-in-string' is an XEmacs function, not available in Emacs.
92      (replace-in-string
93       . ,(lambda (string regexp rep &optional literal)
94            "See `replace-regexp-in-string', only the order of args differs."
95            (replace-regexp-in-string regexp rep string nil literal)))
96      ;; `string-as-unibyte' is an Emacs function, not available in XEmacs.
97      (string-as-unibyte . identity)
98      ;; `string-make-unibyte' is an Emacs function, not available in XEmacs.
99      (string-make-unibyte . identity)
100      ;; string-as-multibyte often doesn't really do what you think it does.
101      ;; Example:
102      ;;    (aref (string-as-multibyte "\201") 0) -> 129 (aka ?\201)
103      ;;    (aref (string-as-multibyte "\300") 0) -> 192 (aka ?\300)
104      ;;    (aref (string-as-multibyte "\300\201") 0) -> 192 (aka ?\300)
105      ;;    (aref (string-as-multibyte "\300\201") 1) -> 129 (aka ?\201)
106      ;; but
107      ;;    (aref (string-as-multibyte "\201\300") 0) -> 2240
108      ;;    (aref (string-as-multibyte "\201\300") 1) -> <error>
109      ;; Better use string-to-multibyte or encode-coding-string.
110      ;; If you really need string-as-multibyte somewhere it's usually
111      ;; because you're using the internal emacs-mule representation (maybe
112      ;; because you're using string-as-unibyte somewhere), which is
113      ;; generally a problem in itself.
114      ;; Here is an approximate equivalence table to help think about it:
115      ;; (string-as-multibyte s)   ~= (decode-coding-string s 'emacs-mule)
116      ;; (string-to-multibyte s)   ~= (decode-coding-string s 'binary)
117      ;; (string-make-multibyte s) ~= (decode-coding-string s locale-coding-system)
118      ;; `string-as-multibyte' is an Emacs function, not available in XEmacs.
119      (string-as-multibyte . identity)
120      ;; `multibyte-string-p' is an Emacs function, not available in XEmacs.
121      (multibyte-string-p . ignore)
122      ;; `insert-byte' is available only in Emacs 23.1 or greater.
123      (insert-byte . insert-char)
124      ;; `multibyte-char-to-unibyte' is an Emacs function, not available
125      ;; in XEmacs.
126      (multibyte-char-to-unibyte . identity)
127      ;; `set-buffer-multibyte' is an Emacs function, not available in XEmacs.
128      (set-buffer-multibyte . ignore)
129      ;; `special-display-p' is an Emacs function, not available in XEmacs.
130      (special-display-p
131       . ,(lambda (buffer-name)
132            "Returns non-nil if a buffer named BUFFER-NAME gets a special frame."
133            (and special-display-function
134                 (or (and (member buffer-name special-display-buffer-names) t)
135                     (cdr (assoc buffer-name special-display-buffer-names))
136                     (catch 'return
137                       (dolist (elem special-display-regexps)
138                         (and (stringp elem)
139                              (string-match elem buffer-name)
140                              (throw 'return t))
141                         (and (consp elem)
142                              (stringp (car elem))
143                              (string-match (car elem) buffer-name)
144                              (throw 'return (cdr elem)))))))))
145      ;; `substring-no-properties' is available only in Emacs 22.1 or greater.
146      (substring-no-properties
147       . ,(lambda (string &optional from to)
148            "Return a substring of STRING, without text properties.
149 It starts at index FROM and ending before TO.
150 TO may be nil or omitted; then the substring runs to the end of STRING.
151 If FROM is nil or omitted, the substring starts at the beginning of STRING.
152 If FROM or TO is negative, it counts from the end.
153
154 With one argument, just copy STRING without its properties."
155            (setq string (substring string (or from 0) to))
156            (set-text-properties 0 (length string) nil string)
157            string))
158      ;; `line-number-at-pos' is available only in Emacs 22.1 or greater
159      ;; and XEmacs 21.5.
160      (line-number-at-pos
161       . ,(lambda (&optional pos)
162            "Return (narrowed) buffer line number at position POS.
163 If POS is nil, use current buffer location.
164 Counting starts at (point-min), so the value refers
165 to the contents of the accessible portion of the buffer."
166            (let ((opoint (or pos (point))) start)
167              (save-excursion
168                (goto-char (point-min))
169                (setq start (point))
170                (goto-char opoint)
171                (forward-line 0)
172                (1+ (count-lines start (point))))))))))
173
174 ;; `decode-coding-string', `encode-coding-string', `decode-coding-region'
175 ;; and `encode-coding-region' are available in Emacs and XEmacs built with
176 ;; the `file-coding' feature, but the XEmacs versions treat nil, that is
177 ;; given as the `coding-system' argument, as the `binary' coding system.
178 (eval-and-compile
179   (if (featurep 'xemacs)
180       (if (featurep 'file-coding)
181           (progn
182             (defun mm-decode-coding-string (str coding-system)
183               (if coding-system
184                   (decode-coding-string str coding-system)
185                 str))
186             (defun mm-encode-coding-string (str coding-system)
187               (if coding-system
188                   (encode-coding-string str coding-system)
189                 str))
190             (defun mm-decode-coding-region (start end coding-system)
191               (if coding-system
192                   (decode-coding-region start end coding-system)))
193             (defun mm-encode-coding-region (start end coding-system)
194               (if coding-system
195                   (encode-coding-region start end coding-system))))
196         (defun mm-decode-coding-string (str coding-system) str)
197         (defun mm-encode-coding-string (str coding-system) str)
198         (defalias 'mm-decode-coding-region 'ignore)
199         (defalias 'mm-encode-coding-region 'ignore))
200     (defalias 'mm-decode-coding-string 'decode-coding-string)
201     (defalias 'mm-encode-coding-string 'encode-coding-string)
202     (defalias 'mm-decode-coding-region 'decode-coding-region)
203     (defalias 'mm-encode-coding-region 'encode-coding-region)))
204
205 ;; `string-to-multibyte' is available only in Emacs 22.1 or greater.
206 (defalias 'mm-string-to-multibyte
207   (cond
208    ((featurep 'xemacs)
209     'identity)
210    ((fboundp 'string-to-multibyte)
211     'string-to-multibyte)
212    (t
213     (lambda (string)
214       "Return a multibyte string with the same individual chars as STRING."
215       (mapconcat
216        (lambda (ch) (mm-string-as-multibyte (char-to-string ch)))
217        string "")))))
218
219 ;; `char-or-char-int-p' is an XEmacs function, not available in Emacs.
220 (eval-and-compile
221   (defalias 'mm-char-or-char-int-p
222     (cond
223      ((fboundp 'char-or-char-int-p) 'char-or-char-int-p)
224      ((fboundp 'char-valid-p) 'char-valid-p)
225      (t 'identity))))
226
227 ;; `ucs-to-char' is a function that Mule-UCS provides.
228 (if (featurep 'xemacs)
229     (cond ((and (fboundp 'unicode-to-char) ;; XEmacs 21.5.
230                 (subrp (symbol-function 'unicode-to-char)))
231            (if (featurep 'mule)
232                (defalias 'mm-ucs-to-char 'unicode-to-char)
233              (defun mm-ucs-to-char (codepoint)
234                "Convert Unicode codepoint to character."
235                (or (unicode-to-char codepoint) ?#))))
236           ((featurep 'mule)
237            (defun mm-ucs-to-char (codepoint)
238              "Convert Unicode codepoint to character."
239              (if (fboundp 'ucs-to-char) ;; Mule-UCS is loaded.
240                  (progn
241                    (defalias 'mm-ucs-to-char
242                      (lambda (codepoint)
243                        "Convert Unicode codepoint to character."
244                        (condition-case nil
245                            (or (ucs-to-char codepoint) ?#)
246                          (error ?#))))
247                    (mm-ucs-to-char codepoint))
248                (condition-case nil
249                    (or (int-to-char codepoint) ?#)
250                  (error ?#)))))
251           (t
252            (defun mm-ucs-to-char (codepoint)
253              "Convert Unicode codepoint to character."
254              (condition-case nil
255                  (or (int-to-char codepoint) ?#)
256                (error ?#)))))
257   (if (let ((char (make-char 'japanese-jisx0208 36 34)))
258         (eq char (decode-char 'ucs char)))
259       ;; Emacs 23.
260       (defalias 'mm-ucs-to-char 'identity)
261     (defun mm-ucs-to-char (codepoint)
262       "Convert Unicode codepoint to character."
263       (or (decode-char 'ucs codepoint) ?#))))
264
265 ;; Fixme:  This seems always to be used to read a MIME charset, so it
266 ;; should be re-named and fixed (in Emacs) to offer completion only on
267 ;; proper charset names (base coding systems which have a
268 ;; mime-charset defined).  XEmacs doesn't believe in mime-charset;
269 ;; test with
270 ;;   `(or (coding-system-get 'iso-8859-1 'mime-charset)
271 ;;        (coding-system-get 'iso-8859-1 :mime-charset))'
272 ;; Actually, there should be an `mm-coding-system-mime-charset'.
273 (eval-and-compile
274   (defalias 'mm-read-coding-system
275     (cond
276      ((fboundp 'read-coding-system)
277       (if (and (featurep 'xemacs)
278                (<= (string-to-number emacs-version) 21.1))
279           (lambda (prompt &optional default-coding-system)
280             (read-coding-system prompt))
281         'read-coding-system))
282      (t (lambda (prompt &optional default-coding-system)
283           "Prompt the user for a coding system."
284           (completing-read
285            prompt (mapcar (lambda (s) (list (symbol-name (car s))))
286                           mm-mime-mule-charset-alist)))))))
287
288 (defvar mm-coding-system-list nil)
289 (defun mm-get-coding-system-list ()
290   "Get the coding system list."
291   (or mm-coding-system-list
292       (setq mm-coding-system-list (mm-coding-system-list))))
293
294 (defun mm-coding-system-p (cs)
295   "Return non-nil if CS is a symbol naming a coding system.
296 In XEmacs, also return non-nil if CS is a coding system object.
297 If CS is available, return CS itself in Emacs, and return a coding
298 system object in XEmacs."
299   (if (fboundp 'find-coding-system)
300       (and cs (find-coding-system cs))
301     (if (fboundp 'coding-system-p)
302         (when (coding-system-p cs)
303           cs)
304       ;; no-MULE XEmacs:
305       (car (memq cs (mm-get-coding-system-list))))))
306
307 (defun mm-codepage-setup (number &optional alias)
308   "Create a coding system cpNUMBER.
309 The coding system is created using `codepage-setup'.  If ALIAS is
310 non-nil, an alias is created and added to
311 `mm-charset-synonym-alist'.  If ALIAS is a string, it's used as
312 the alias.  Else windows-NUMBER is used."
313   (interactive
314    (let ((completion-ignore-case t)
315          (candidates (if (fboundp 'cp-supported-codepages)
316                          (cp-supported-codepages)
317                        ;; Removed in Emacs 23 (unicode), so signal an error:
318                        (error "`codepage-setup' not present in this Emacs version"))))
319      (list (completing-read "Setup DOS Codepage: (default 437) " candidates
320                             nil t nil nil "437"))))
321   (when alias
322     (setq alias (if (stringp alias)
323                     (intern alias)
324                   (intern (format "windows-%s" number)))))
325   (let* ((cp (intern (format "cp%s" number))))
326     (unless (mm-coding-system-p cp)
327       (if (fboundp 'codepage-setup)     ; silence compiler
328           (codepage-setup number)
329         (error "`codepage-setup' not present in this Emacs version")))
330     (when (and alias
331                ;; Don't add alias if setup of cp failed.
332                (mm-coding-system-p cp))
333       (add-to-list 'mm-charset-synonym-alist (cons alias cp)))))
334
335 (defvar mm-charset-synonym-alist
336   `(
337     ;; Not in XEmacs, but it's not a proper MIME charset anyhow.
338     ,@(unless (mm-coding-system-p 'x-ctext)
339         '((x-ctext . ctext)))
340     ;; ISO-8859-15 is very similar to ISO-8859-1.  But it's _different_ in 8
341     ;; positions!
342     ,@(unless (mm-coding-system-p 'iso-8859-15)
343         '((iso-8859-15 . iso-8859-1)))
344     ;; BIG-5HKSCS is similar to, but different than, BIG-5.
345     ,@(unless (mm-coding-system-p 'big5-hkscs)
346         '((big5-hkscs . big5)))
347     ;; A Microsoft misunderstanding.
348     ,@(when (and (not (mm-coding-system-p 'unicode))
349                  (mm-coding-system-p 'utf-16-le))
350         '((unicode . utf-16-le)))
351     ;; A Microsoft misunderstanding.
352     ,@(unless (mm-coding-system-p 'ks_c_5601-1987)
353         (if (mm-coding-system-p 'cp949)
354             '((ks_c_5601-1987 . cp949))
355           '((ks_c_5601-1987 . euc-kr))))
356     ;; Windows-31J is Windows Codepage 932.
357     ,@(when (and (not (mm-coding-system-p 'windows-31j))
358                  (mm-coding-system-p 'cp932))
359         '((windows-31j . cp932)))
360     ;; Charset name: GBK, Charset aliases: CP936, MS936, windows-936
361     ;; http://www.iana.org/assignments/charset-reg/GBK
362     ;; Emacs 22.1 has cp936, but not gbk, so we alias it:
363     ,@(when (and (not (mm-coding-system-p 'gbk))
364                  (mm-coding-system-p 'cp936))
365         '((gbk . cp936)))
366     ;; UTF8 is a bogus name for UTF-8
367     ,@(when (and (not (mm-coding-system-p 'utf8))
368                  (mm-coding-system-p 'utf-8))
369         '((utf8 . utf-8)))
370     ;; ISO8859-1 is a bogus name for ISO-8859-1
371     ,@(when (and (not (mm-coding-system-p 'iso8859-1))
372                  (mm-coding-system-p 'iso-8859-1))
373         '((iso8859-1 . iso-8859-1)))
374     ;; ISO_8859-1 is a bogus name for ISO-8859-1
375     ,@(when (and (not (mm-coding-system-p 'iso_8859-1))
376                  (mm-coding-system-p 'iso-8859-1))
377         '((iso_8859-1 . iso-8859-1)))
378     )
379   "A mapping from unknown or invalid charset names to the real charset names.
380
381 See `mm-codepage-iso-8859-list' and `mm-codepage-ibm-list'.")
382
383 (defcustom mm-codepage-iso-8859-list
384   (list 1250 ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft
385         ;; Outlook users in Czech republic.  Use this to allow reading of
386         ;; their e-mails.  cp1250 should be defined by M-x codepage-setup
387         ;; (Emacs 21).
388         '(1252 . 1) ;; Windows-1252 is a superset of iso-8859-1 (West
389                     ;; Europe).  See also `gnus-article-dumbquotes-map'.
390         '(1254 . 9) ;; Windows-1254 is a superset of iso-8859-9 (Turkish).
391         '(1255 . 8));; Windows-1255 is a superset of iso-8859-8 (Hebrew).
392   "A list of Windows codepage numbers and iso-8859 charset numbers.
393
394 If an element is a number corresponding to a supported windows
395 codepage, appropriate entries to `mm-charset-synonym-alist' are
396 added by `mm-setup-codepage-iso-8859'.  An element may also be a
397 cons cell where the car is a codepage number and the cdr is the
398 corresponding number of an iso-8859 charset."
399   :type '(list (set :inline t
400                     (const 1250 :tag "Central and East European")
401                     (const (1252 . 1) :tag "West European")
402                     (const (1254 . 9) :tag "Turkish")
403                     (const (1255 . 8) :tag "Hebrew"))
404                (repeat :inline t
405                        :tag "Other options"
406                        (choice
407                         (integer :tag "Windows codepage number")
408                         (cons (integer :tag "Windows codepage number")
409                               (integer :tag "iso-8859 charset  number")))))
410   :version "22.1" ;; Gnus 5.10.9
411   :group 'mime)
412
413 (defcustom mm-codepage-ibm-list
414   (list 437 ;; (US etc.)
415         860 ;; (Portugal)
416         861 ;; (Iceland)
417         862 ;; (Israel)
418         863 ;; (Canadian French)
419         865 ;; (Nordic)
420         852 ;;
421         850 ;; (Latin 1)
422         855 ;; (Cyrillic)
423         866 ;; (Cyrillic - Russian)
424         857 ;; (Turkish)
425         864 ;; (Arabic)
426         869 ;; (Greek)
427         874);; (Thai)
428   ;; In Emacs 23 (unicode), cp... and ibm... are aliases.
429   ;; Cf. http://thread.gmane.org/v9lkng5nwy.fsf@marauder.physik.uni-ulm.de
430   "List of IBM codepage numbers.
431
432 The codepage mappings slighly differ between IBM and other vendors.
433 See \"ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/IBM/README.TXT\".
434
435 If an element is a number corresponding to a supported windows
436 codepage, appropriate entries to `mm-charset-synonym-alist' are
437 added by `mm-setup-codepage-ibm'."
438   :type '(list (set :inline t
439                     (const 437 :tag "US etc.")
440                     (const 860 :tag "Portugal")
441                     (const 861 :tag "Iceland")
442                     (const 862 :tag "Israel")
443                     (const 863 :tag "Canadian French")
444                     (const 865 :tag "Nordic")
445                     (const 852)
446                     (const 850 :tag "Latin 1")
447                     (const 855 :tag "Cyrillic")
448                     (const 866 :tag "Cyrillic - Russian")
449                     (const 857 :tag "Turkish")
450                     (const 864 :tag "Arabic")
451                     (const 869 :tag "Greek")
452                     (const 874 :tag "Thai"))
453                (repeat :inline t
454                        :tag "Other options"
455                        (integer :tag "Codepage number")))
456   :version "22.1" ;; Gnus 5.10.9
457   :group 'mime)
458
459 (defun mm-setup-codepage-iso-8859 (&optional list)
460   "Add appropriate entries to `mm-charset-synonym-alist'.
461 Unless LIST is given, `mm-codepage-iso-8859-list' is used."
462   (unless list
463     (setq list mm-codepage-iso-8859-list))
464   (dolist (i list)
465     (let (cp windows iso)
466       (if (consp i)
467           (setq cp (intern (format "cp%d" (car i)))
468                 windows (intern (format "windows-%d" (car i)))
469                 iso (intern (format "iso-8859-%d" (cdr i))))
470         (setq cp (intern (format "cp%d" i))
471               windows (intern (format "windows-%d" i))))
472       (unless (mm-coding-system-p windows)
473         (if (mm-coding-system-p cp)
474             (add-to-list 'mm-charset-synonym-alist (cons windows cp))
475           (add-to-list 'mm-charset-synonym-alist (cons windows iso)))))))
476
477 (defun mm-setup-codepage-ibm (&optional list)
478   "Add appropriate entries to `mm-charset-synonym-alist'.
479 Unless LIST is given, `mm-codepage-ibm-list' is used."
480   (unless list
481     (setq list mm-codepage-ibm-list))
482   (dolist (number list)
483     (let ((ibm (intern (format "ibm%d" number)))
484           (cp  (intern (format "cp%d" number))))
485       (when (and (not (mm-coding-system-p ibm))
486                  (mm-coding-system-p cp))
487         (add-to-list 'mm-charset-synonym-alist (cons ibm cp))))))
488
489 ;; Initialize:
490 (mm-setup-codepage-iso-8859)
491 (mm-setup-codepage-ibm)
492
493 ;; Note: this has to be defined before `mm-charset-to-coding-system'.
494 (defcustom mm-charset-eval-alist
495   (if (featurep 'xemacs)
496       nil ;; I don't know what would be useful for XEmacs.
497     '(;; Emacs 21 offers 1250 1251 1253 1257.  Emacs 22 provides autoloads for
498       ;; 1250-1258 (i.e. `mm-codepage-setup' does nothing).
499       (windows-1250 . (mm-codepage-setup 1250 t))
500       (windows-1251 . (mm-codepage-setup 1251 t))
501       (windows-1253 . (mm-codepage-setup 1253 t))
502       (windows-1257 . (mm-codepage-setup 1257 t))))
503   "An alist of (CHARSET . FORM) pairs.
504 If an article is encoded in an unknown CHARSET, FORM is
505 evaluated.  This allows to load additional libraries providing
506 charsets on demand.  If supported by your Emacs version, you
507 could use `autoload-coding-system' here."
508   :version "22.1" ;; Gnus 5.10.9
509   :type '(list (set :inline t
510                     (const (windows-1250 . (mm-codepage-setup 1250 t)))
511                     (const (windows-1251 . (mm-codepage-setup 1251 t)))
512                     (const (windows-1253 . (mm-codepage-setup 1253 t)))
513                     (const (windows-1257 . (mm-codepage-setup 1257 t)))
514                     (const (cp850 . (mm-codepage-setup 850 nil))))
515                (repeat :inline t
516                        :tag "Other options"
517                        (cons (symbol :tag "charset")
518                              (symbol :tag "form"))))
519   :group 'mime)
520 (put 'mm-charset-eval-alist 'risky-local-variable t)
521
522 (defvar mm-charset-override-alist)
523
524 ;; Note: this function has to be defined before `mm-charset-override-alist'
525 ;; since it will use this function in order to determine its default value
526 ;; when loading mm-util.elc.
527 (defun mm-charset-to-coding-system (charset &optional lbt
528                                             allow-override silent)
529   "Return coding-system corresponding to CHARSET.
530 CHARSET is a symbol naming a MIME charset.
531 If optional argument LBT (`unix', `dos' or `mac') is specified, it is
532 used as the line break code type of the coding system.
533
534 If ALLOW-OVERRIDE is given, use `mm-charset-override-alist' to
535 map undesired charset names to their replacement.  This should
536 only be used for decoding, not for encoding.
537
538 A non-nil value of SILENT means don't issue a warning even if CHARSET
539 is not available."
540   ;; OVERRIDE is used (only) in `mm-decode-body' and `mm-decode-string'.
541   (when (stringp charset)
542     (setq charset (intern (downcase charset))))
543   (when lbt
544     (setq charset (intern (format "%s-%s" charset lbt))))
545   (cond
546    ((null charset)
547     charset)
548    ;; Running in a non-MULE environment.
549    ((or (null (mm-get-coding-system-list))
550         (not (fboundp 'coding-system-get)))
551     charset)
552    ;; Check override list quite early.  Should only used for decoding, not for
553    ;; encoding!
554    ((and allow-override
555          (let ((cs (cdr (assq charset mm-charset-override-alist))))
556            (and cs (mm-coding-system-p cs) cs))))
557    ;; ascii
558    ((eq charset 'us-ascii)
559     'ascii)
560    ;; Check to see whether we can handle this charset.  (This depends
561    ;; on there being some coding system matching each `mime-charset'
562    ;; property defined, as there should be.)
563    ((and (mm-coding-system-p charset)
564 ;;; Doing this would potentially weed out incorrect charsets.
565 ;;;      charset
566 ;;;      (eq charset (coding-system-get charset 'mime-charset))
567          )
568     charset)
569    ;; Use coding system Emacs knows.
570    ((and (fboundp 'coding-system-from-name)
571          (coding-system-from-name charset)))
572    ;; Eval expressions from `mm-charset-eval-alist'
573    ((let* ((el (assq charset mm-charset-eval-alist))
574            (cs (car el))
575            (form (cdr el)))
576       (and cs
577            form
578            (prog2
579                ;; Avoid errors...
580                (condition-case nil (eval form) (error nil))
581                ;; (message "Failed to eval `%s'" form))
582                (mm-coding-system-p cs)
583              (message "Added charset `%s' via `mm-charset-eval-alist'" cs))
584            cs)))
585    ;; Translate invalid charsets.
586    ((let ((cs (cdr (assq charset mm-charset-synonym-alist))))
587       (and cs
588            (mm-coding-system-p cs)
589            ;; (message
590            ;;  "Using synonym `%s' from `mm-charset-synonym-alist' for `%s'"
591            ;;  cs charset)
592            cs)))
593    ;; Last resort: search the coding system list for entries which
594    ;; have the right mime-charset in case the canonical name isn't
595    ;; defined (though it should be).
596    ((let (cs)
597       ;; mm-get-coding-system-list returns a list of cs without lbt.
598       ;; Do we need -lbt?
599       (dolist (c (mm-get-coding-system-list))
600         (if (and (null cs)
601                  (eq charset (or (coding-system-get c :mime-charset)
602                                  (coding-system-get c 'mime-charset))))
603             (setq cs c)))
604       (unless (or silent cs)
605         ;; Warn the user about unknown charset:
606         (if (fboundp 'gnus-message)
607             (gnus-message 7 "Unknown charset: %s" charset)
608           (message "Unknown charset: %s" charset)))
609       cs))))
610
611 ;; Note: `mm-charset-to-coding-system' has to be defined before this.
612 (defcustom mm-charset-override-alist
613   ;; Note: pairs that cannot be used in the Emacs version currently running
614   ;; will be removed.
615   '((gb2312 . gbk)
616     (iso-8859-1 . windows-1252)
617     (iso-8859-8 . windows-1255)
618     (iso-8859-9 . windows-1254))
619   "A mapping from undesired charset names to their replacement.
620
621 You may add pairs like (iso-8859-1 . windows-1252) here,
622 i.e. treat iso-8859-1 as windows-1252.  windows-1252 is a
623 superset of iso-8859-1."
624   :type
625   '(list
626     :convert-widget
627     (lambda (widget)
628       (let ((defaults
629               (delq nil
630                     (mapcar (lambda (pair)
631                               (if (mm-charset-to-coding-system (cdr pair)
632                                                                nil nil t)
633                                   pair))
634                             '((gb2312 . gbk)
635                               (iso-8859-1 . windows-1252)
636                               (iso-8859-8 . windows-1255)
637                               (iso-8859-9 . windows-1254)
638                               (undecided  . windows-1252)))))
639             (val (copy-sequence (default-value 'mm-charset-override-alist)))
640             pair rest)
641         (while val
642           (push (if (and (prog1
643                              (setq pair (assq (caar val) defaults))
644                            (setq defaults (delq pair defaults)))
645                          (equal (car val) pair))
646                     `(const ,pair)
647                   `(cons :format "%v"
648                          (const :format "(%v" ,(caar val))
649                          (symbol :size 3 :format " . %v)\n" ,(cdar val))))
650                 rest)
651           (setq val (cdr val)))
652         (while defaults
653           (push `(const ,(pop defaults)) rest))
654         (widget-convert
655          'list
656          `(set :inline t :format "%v" ,@(nreverse rest))
657          `(repeat :inline t :tag "Other options"
658                   (cons :format "%v"
659                         (symbol :size 3 :format "(%v")
660                         (symbol :size 3 :format " . %v)\n")))))))
661   ;; Remove pairs that cannot be used in the Emacs version currently
662   ;; running.  Note that this section will be evaluated when loading
663   ;; mm-util.elc.
664   :set (lambda (symbol value)
665          (custom-set-default
666           symbol (delq nil
667                        (mapcar (lambda (pair)
668                                  (if (mm-charset-to-coding-system (cdr pair)
669                                                                   nil nil t)
670                                      pair))
671                                value))))
672   :version "22.1" ;; Gnus 5.10.9
673   :group 'mime)
674
675 (defvar mm-binary-coding-system
676   (cond
677    ((mm-coding-system-p 'binary) 'binary)
678    ((mm-coding-system-p 'no-conversion) 'no-conversion)
679    (t nil))
680   "100% binary coding system.")
681
682 (defvar mm-text-coding-system
683   (or (if (memq system-type '(windows-nt ms-dos))
684           (and (mm-coding-system-p 'raw-text-dos) 'raw-text-dos)
685         (and (mm-coding-system-p 'raw-text) 'raw-text))
686       mm-binary-coding-system)
687   "Text-safe coding system (For removing ^M).")
688
689 (defvar mm-text-coding-system-for-write nil
690   "Text coding system for write.")
691
692 (defvar mm-auto-save-coding-system
693   (cond
694    ((mm-coding-system-p 'utf-8-emacs)   ; Mule 7
695     (if (memq system-type '(windows-nt ms-dos))
696         (if (mm-coding-system-p 'utf-8-emacs-dos)
697             'utf-8-emacs-dos mm-binary-coding-system)
698       'utf-8-emacs))
699    ((mm-coding-system-p 'emacs-mule)
700     (if (memq system-type '(windows-nt ms-dos))
701         (if (mm-coding-system-p 'emacs-mule-dos)
702             'emacs-mule-dos mm-binary-coding-system)
703       'emacs-mule))
704    ((mm-coding-system-p 'escape-quoted) 'escape-quoted)
705    (t mm-binary-coding-system))
706   "Coding system of auto save file.")
707
708 (defvar mm-universal-coding-system mm-auto-save-coding-system
709   "The universal coding system.")
710
711 ;; Fixme: some of the cars here aren't valid MIME charsets.  That
712 ;; should only matter with XEmacs, though.
713 (defvar mm-mime-mule-charset-alist
714   `((us-ascii ascii)
715     (iso-8859-1 latin-iso8859-1)
716     (iso-8859-2 latin-iso8859-2)
717     (iso-8859-3 latin-iso8859-3)
718     (iso-8859-4 latin-iso8859-4)
719     (iso-8859-5 cyrillic-iso8859-5)
720     ;; Non-mule (X)Emacs uses the last mule-charset for 8bit characters.
721     ;; The fake mule-charset, gnus-koi8-r, tells Gnus that the default
722     ;; charset is koi8-r, not iso-8859-5.
723     (koi8-r cyrillic-iso8859-5 gnus-koi8-r)
724     (iso-8859-6 arabic-iso8859-6)
725     (iso-8859-7 greek-iso8859-7)
726     (iso-8859-8 hebrew-iso8859-8)
727     (iso-8859-9 latin-iso8859-9)
728     (iso-8859-14 latin-iso8859-14)
729     (iso-8859-15 latin-iso8859-15)
730     (viscii vietnamese-viscii-lower)
731     (iso-2022-jp latin-jisx0201 japanese-jisx0208 japanese-jisx0208-1978)
732     (euc-kr korean-ksc5601)
733     (gb2312 chinese-gb2312)
734     (gbk chinese-gbk)
735     (gb18030 gb18030-2-byte
736              gb18030-4-byte-bmp gb18030-4-byte-smp
737              gb18030-4-byte-ext-1 gb18030-4-byte-ext-2)
738     (big5 chinese-big5-1 chinese-big5-2)
739     (tibetan tibetan)
740     (thai-tis620 thai-tis620)
741     (windows-1251 cyrillic-iso8859-5)
742     (iso-2022-7bit ethiopic arabic-1-column arabic-2-column)
743     (iso-2022-jp-2 latin-iso8859-1 greek-iso8859-7
744                    latin-jisx0201 japanese-jisx0208-1978
745                    chinese-gb2312 japanese-jisx0208
746                    korean-ksc5601 japanese-jisx0212)
747     (iso-2022-int-1 latin-iso8859-1 greek-iso8859-7
748                     latin-jisx0201 japanese-jisx0208-1978
749                     chinese-gb2312 japanese-jisx0208
750                     korean-ksc5601 japanese-jisx0212
751                     chinese-cns11643-1 chinese-cns11643-2)
752     (iso-2022-int-1 latin-iso8859-1 latin-iso8859-2
753                     cyrillic-iso8859-5 greek-iso8859-7
754                     latin-jisx0201 japanese-jisx0208-1978
755                     chinese-gb2312 japanese-jisx0208
756                     korean-ksc5601 japanese-jisx0212
757                     chinese-cns11643-1 chinese-cns11643-2
758                     chinese-cns11643-3 chinese-cns11643-4
759                     chinese-cns11643-5 chinese-cns11643-6
760                     chinese-cns11643-7)
761     (iso-2022-jp-3 latin-jisx0201 japanese-jisx0208-1978 japanese-jisx0208
762                    japanese-jisx0213-1 japanese-jisx0213-2)
763     (shift_jis latin-jisx0201 katakana-jisx0201 japanese-jisx0208)
764     ,(cond ((fboundp 'unicode-precedence-list)
765             (cons 'utf-8 (delq 'ascii (mapcar 'charset-name
766                                               (unicode-precedence-list)))))
767            ((or (not (fboundp 'charsetp)) ;; non-Mule case
768                 (charsetp 'unicode-a)
769                 (not (mm-coding-system-p 'mule-utf-8)))
770             '(utf-8 unicode-a unicode-b unicode-c unicode-d unicode-e))
771            (t ;; If we have utf-8 we're in Mule 5+.
772             (append '(utf-8)
773                     (delete 'ascii
774                             (coding-system-get 'mule-utf-8 'safe-charsets))))))
775   "Alist of MIME-charset/MULE-charsets.")
776
777 (defun mm-enrich-utf-8-by-mule-ucs ()
778   "Make the `utf-8' MIME charset usable by the Mule-UCS package.
779 This function will run when the `un-define' module is loaded under
780 XEmacs, and fill the `utf-8' entry in `mm-mime-mule-charset-alist'
781 with Mule charsets.  It is completely useless for Emacs."
782   (when (boundp 'unicode-basic-translation-charset-order-list)
783     (condition-case nil
784         (let ((val (delq
785                     'ascii
786                     (copy-sequence
787                      (symbol-value
788                       'unicode-basic-translation-charset-order-list))))
789               (elem (assq 'utf-8 mm-mime-mule-charset-alist)))
790           (if elem
791               (setcdr elem val)
792             (setq mm-mime-mule-charset-alist
793                   (nconc mm-mime-mule-charset-alist
794                          (list (cons 'utf-8 val))))))
795       (error))))
796
797 ;; Correct by construction, but should be unnecessary for Emacs:
798 (if (featurep 'xemacs)
799     (eval-after-load "un-define" '(mm-enrich-utf-8-by-mule-ucs))
800   (when (and (fboundp 'coding-system-list)
801              (fboundp 'sort-coding-systems))
802     (let ((css (sort-coding-systems (coding-system-list 'base-only)))
803           cs mime mule alist)
804       (while css
805         (setq cs (pop css)
806               mime (or (coding-system-get cs :mime-charset); Emacs 23 (unicode)
807                        (coding-system-get cs 'mime-charset)))
808         (when (and mime
809                    (not (eq t (setq mule
810                                     (coding-system-get cs 'safe-charsets))))
811                    (not (assq mime alist)))
812           (push (cons mime (delq 'ascii mule)) alist)))
813       (setq mm-mime-mule-charset-alist (nreverse alist)))))
814
815 (defvar mm-hack-charsets '(iso-8859-15 iso-2022-jp-2)
816   "A list of special charsets.
817 Valid elements include:
818 `iso-8859-15'    convert ISO-8859-1, -9 to ISO-8859-15 if ISO-8859-15 exists.
819 `iso-2022-jp-2'  convert ISO-2022-jp to ISO-2022-jp-2 if ISO-2022-jp-2 exists."
820 )
821
822 (defvar mm-iso-8859-15-compatible
823   '((iso-8859-1 "\xA4\xA6\xA8\xB4\xB8\xBC\xBD\xBE")
824     (iso-8859-9 "\xA4\xA6\xA8\xB4\xB8\xBC\xBD\xBE\xD0\xDD\xDE\xF0\xFD\xFE"))
825   "ISO-8859-15 exchangeable coding systems and inconvertible characters.")
826
827 (defvar mm-iso-8859-x-to-15-table
828   (and (fboundp 'coding-system-p)
829        (mm-coding-system-p 'iso-8859-15)
830        (mapcar
831         (lambda (cs)
832           (if (mm-coding-system-p (car cs))
833               (let ((c (string-to-char
834                         (decode-coding-string "\341" (car cs)))))
835                 (cons (char-charset c)
836                       (cons
837                        (- (string-to-char
838                            (decode-coding-string "\341" 'iso-8859-15)) c)
839                        (string-to-list (decode-coding-string (car (cdr cs))
840                                                              (car cs))))))
841             '(gnus-charset 0)))
842         mm-iso-8859-15-compatible))
843   "A table of the difference character between ISO-8859-X and ISO-8859-15.")
844
845 (defcustom mm-coding-system-priorities
846   (let ((lang (if (boundp 'current-language-environment)
847                   (symbol-value 'current-language-environment))))
848     (cond (;; XEmacs without Mule but with `file-coding'.
849            (not lang) nil)
850           ;; In XEmacs 21.5 it may be the one like "Japanese (UTF-8)".
851           ((string-match "\\`Japanese" lang)
852            ;; Japanese users prefer iso-2022-jp to euc-japan or
853            ;; shift_jis, however iso-8859-1 should be used when
854            ;; there are only ASCII text and Latin-1 characters.
855            '(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8))))
856   "Preferred coding systems for encoding outgoing messages.
857
858 More than one suitable coding system may be found for some text.
859 By default, the coding system with the highest priority is used
860 to encode outgoing messages (see `sort-coding-systems').  If this
861 variable is set, it overrides the default priority."
862   :version "21.2"
863   :type '(repeat (symbol :tag "Coding system"))
864   :group 'mime)
865
866 ;; ??
867 (defvar mm-use-find-coding-systems-region
868   (fboundp 'find-coding-systems-region)
869   "Use `find-coding-systems-region' to find proper coding systems.
870
871 Setting it to nil is useful on Emacsen supporting Unicode if sending
872 mail with multiple parts is preferred to sending a Unicode one.")
873
874 ;;; Internal variables:
875
876 ;;; Functions:
877
878 (defun mm-mule-charset-to-mime-charset (charset)
879   "Return the MIME charset corresponding to the given Mule CHARSET."
880   (if (and (fboundp 'find-coding-systems-for-charsets)
881            (fboundp 'sort-coding-systems))
882       (let ((css (sort (sort-coding-systems
883                         (find-coding-systems-for-charsets (list charset)))
884                        'mm-sort-coding-systems-predicate))
885             cs mime)
886         (while (and (not mime)
887                     css)
888           (when (setq cs (pop css))
889             (setq mime (or (coding-system-get cs :mime-charset)
890                            (coding-system-get cs 'mime-charset)))))
891         mime)
892     (let ((alist (mapcar (lambda (cs)
893                            (assq cs mm-mime-mule-charset-alist))
894                          (sort (mapcar 'car mm-mime-mule-charset-alist)
895                                'mm-sort-coding-systems-predicate)))
896           out)
897       (while alist
898         (when (memq charset (cdar alist))
899           (setq out (caar alist)
900                 alist nil))
901         (pop alist))
902       out)))
903
904 (eval-and-compile
905   (if (featurep 'xemacs)
906       (defalias 'mm-enable-multibyte 'ignore)
907     (defun mm-enable-multibyte ()
908       "Set the multibyte flag of the current buffer.
909 Only do this if the default value of `enable-multibyte-characters' is
910 non-nil.  This is a no-op in XEmacs."
911       (set-buffer-multibyte t)))
912
913   (if (featurep 'xemacs)
914       (defalias 'mm-disable-multibyte 'ignore)
915     (defun mm-disable-multibyte ()
916       "Unset the multibyte flag of in the current buffer.
917 This is a no-op in XEmacs."
918       (set-buffer-multibyte nil))))
919
920 (defun mm-preferred-coding-system (charset)
921   ;; A typo in some Emacs versions.
922   (or (get-charset-property charset 'preferred-coding-system)
923       (get-charset-property charset 'prefered-coding-system)))
924
925 ;; Mule charsets shouldn't be used.
926 (defsubst mm-guess-charset ()
927   "Guess Mule charset from the language environment."
928   (or
929    mail-parse-mule-charset ;; cached mule-charset
930    (progn
931      (setq mail-parse-mule-charset
932            (and (boundp 'current-language-environment)
933                 (car (last
934                       (assq 'charset
935                             (assoc current-language-environment
936                                    language-info-alist))))))
937      (if (or (not mail-parse-mule-charset)
938              (eq mail-parse-mule-charset 'ascii))
939          (setq mail-parse-mule-charset
940                (or (car (last (assq mail-parse-charset
941                                     mm-mime-mule-charset-alist)))
942                    ;; default
943                    'latin-iso8859-1)))
944      mail-parse-mule-charset)))
945
946 (defun mm-charset-after (&optional pos)
947   "Return charset of a character in current buffer at position POS.
948 If POS is nil, it defauls to the current point.
949 If POS is out of range, the value is nil.
950 If the charset is `composition', return the actual one."
951   (let ((char (char-after pos)) charset)
952     (if (< (mm-char-int char) 128)
953         (setq charset 'ascii)
954       ;; charset-after is fake in some Emacsen.
955       (setq charset (and (fboundp 'char-charset) (char-charset char)))
956       (if (eq charset 'composition)     ; Mule 4
957           (let ((p (or pos (point))))
958             (cadr (find-charset-region p (1+ p))))
959         (if (and charset (not (memq charset '(ascii eight-bit-control
960                                                     eight-bit-graphic))))
961             charset
962           (mm-guess-charset))))))
963
964 (defun mm-mime-charset (charset)
965   "Return the MIME charset corresponding to the given Mule CHARSET."
966   (if (eq charset 'unknown)
967       (error "The message contains non-printable characters, please use attachment"))
968   (if (and (fboundp 'coding-system-get) (fboundp 'get-charset-property))
969       ;; This exists in Emacs 20.
970       (or
971        (and (mm-preferred-coding-system charset)
972             (or (coding-system-get
973                  (mm-preferred-coding-system charset) :mime-charset)
974                 (coding-system-get
975                  (mm-preferred-coding-system charset) 'mime-charset)))
976        (and (eq charset 'ascii)
977             'us-ascii)
978        (mm-preferred-coding-system charset)
979        (mm-mule-charset-to-mime-charset charset))
980     ;; This is for XEmacs.
981     (mm-mule-charset-to-mime-charset charset)))
982
983 (if (fboundp 'delete-dups)
984     (defalias 'mm-delete-duplicates 'delete-dups)
985   (defun mm-delete-duplicates (list)
986     "Destructively remove `equal' duplicates from LIST.
987 Store the result in LIST and return it.  LIST must be a proper list.
988 Of several `equal' occurrences of an element in LIST, the first
989 one is kept.
990
991 This is a compatibility function for Emacsen without `delete-dups'."
992     ;; Code from `subr.el' in Emacs 22:
993     (let ((tail list))
994       (while tail
995         (setcdr tail (delete (car tail) (cdr tail)))
996         (setq tail (cdr tail))))
997     list))
998
999 ;; Fixme:  This is used in places when it should be testing the
1000 ;; default multibyteness.  See mm-default-multibyte-p.
1001 (eval-and-compile
1002   (if (and (not (featurep 'xemacs))
1003            (boundp 'enable-multibyte-characters))
1004       (defun mm-multibyte-p ()
1005         "Non-nil if multibyte is enabled in the current buffer."
1006         enable-multibyte-characters)
1007     (defun mm-multibyte-p () (featurep 'mule))))
1008
1009 (defun mm-default-multibyte-p ()
1010   "Return non-nil if the session is multibyte.
1011 This affects whether coding conversion should be attempted generally."
1012   (if (featurep 'mule)
1013       (if (boundp 'enable-multibyte-characters)
1014           (default-value 'enable-multibyte-characters)
1015         t)))
1016
1017 (defun mm-iso-8859-x-to-15-region (&optional b e)
1018   (if (fboundp 'char-charset)
1019       (let (charset item c inconvertible)
1020         (save-restriction
1021           (if e (narrow-to-region b e))
1022           (goto-char (point-min))
1023           (skip-chars-forward "\0-\177")
1024           (while (not (eobp))
1025             (cond
1026              ((not (setq item (assq (char-charset (setq c (char-after)))
1027                                     mm-iso-8859-x-to-15-table)))
1028               (forward-char))
1029              ((memq c (cdr (cdr item)))
1030               (setq inconvertible t)
1031               (forward-char))
1032              (t
1033               (insert-before-markers (prog1 (+ c (car (cdr item)))
1034                                        (delete-char 1)))))
1035             (skip-chars-forward "\0-\177")))
1036         (not inconvertible))))
1037
1038 (defun mm-sort-coding-systems-predicate (a b)
1039   (let ((priorities
1040          (mapcar (lambda (cs)
1041                    ;; Note: invalid entries are dropped silently
1042                    (and (setq cs (mm-coding-system-p cs))
1043                         (coding-system-base cs)))
1044                  mm-coding-system-priorities)))
1045     (and (setq a (mm-coding-system-p a))
1046          (if (setq b (mm-coding-system-p b))
1047              (> (length (memq (coding-system-base a) priorities))
1048                 (length (memq (coding-system-base b) priorities)))
1049            t))))
1050
1051 (eval-when-compile
1052   (autoload 'latin-unity-massage-name "latin-unity")
1053   (autoload 'latin-unity-maybe-remap "latin-unity")
1054   (autoload 'latin-unity-representations-feasible-region "latin-unity")
1055   (autoload 'latin-unity-representations-present-region "latin-unity"))
1056
1057 (defvar latin-unity-coding-systems)
1058 (defvar latin-unity-ucs-list)
1059
1060 (defun mm-xemacs-find-mime-charset-1 (begin end)
1061   "Determine which MIME charset to use to send region as message.
1062 This uses the XEmacs-specific latin-unity package to better handle the
1063 case where identical characters from diverse ISO-8859-? character sets
1064 can be encoded using a single one of the corresponding coding systems.
1065
1066 It treats `mm-coding-system-priorities' as the list of preferred
1067 coding systems; a useful example setting for this list in Western
1068 Europe would be '(iso-8859-1 iso-8859-15 utf-8), which would default
1069 to the very standard Latin 1 coding system, and only move to coding
1070 systems that are less supported as is necessary to encode the
1071 characters that exist in the buffer.
1072
1073 Latin Unity doesn't know about those non-ASCII Roman characters that
1074 are available in various East Asian character sets.  As such, its
1075 behavior if you have a JIS 0212 LATIN SMALL LETTER A WITH ACUTE in a
1076 buffer and it can otherwise be encoded as Latin 1, won't be ideal.
1077 But this is very much a corner case, so don't worry about it."
1078   (let ((systems mm-coding-system-priorities) csets psets curset)
1079
1080     ;; Load the Latin Unity library, if available.
1081     (when (and (not (featurep 'latin-unity)) (locate-library "latin-unity"))
1082       (require 'latin-unity))
1083
1084     ;; Now, can we use it?
1085     (if (featurep 'latin-unity)
1086         (progn
1087           (setq csets (latin-unity-representations-feasible-region begin end)
1088                 psets (latin-unity-representations-present-region begin end))
1089
1090           (catch 'done
1091
1092             ;; Pass back the first coding system in the preferred list
1093             ;; that can encode the whole region.
1094             (dolist (curset systems)
1095               (setq curset (latin-unity-massage-name 'buffer-default curset))
1096
1097               ;; If the coding system is a universal coding system, then
1098               ;; it can certainly encode all the characters in the region.
1099               (if (memq curset latin-unity-ucs-list)
1100                   (throw 'done (list curset)))
1101
1102               ;; If a coding system isn't universal, and isn't in
1103               ;; the list that latin unity knows about, we can't
1104               ;; decide whether to use it here. Leave that until later
1105               ;; in `mm-find-mime-charset-region' function, whence we
1106               ;; have been called.
1107               (unless (memq curset latin-unity-coding-systems)
1108                 (throw 'done nil))
1109
1110               ;; Right, we know about this coding system, and it may
1111               ;; conceivably be able to encode all the characters in
1112               ;; the region.
1113               (if (latin-unity-maybe-remap begin end curset csets psets t)
1114                   (throw 'done (list curset))))
1115
1116             ;; Can't encode using anything from the
1117             ;; `mm-coding-system-priorities' list.
1118             ;; Leave `mm-find-mime-charset' to do most of the work.
1119             nil))
1120
1121       ;; Right, latin unity isn't available; let `mm-find-charset-region'
1122       ;; take its default action, which equally applies to GNU Emacs.
1123       nil)))
1124
1125 (defmacro mm-xemacs-find-mime-charset (begin end)
1126   (when (featurep 'xemacs)
1127     `(and (featurep 'mule) (mm-xemacs-find-mime-charset-1 ,begin ,end))))
1128
1129 (declare-function mm-delete-duplicates "mm-util" (list))
1130
1131 (defun mm-find-mime-charset-region (b e &optional hack-charsets)
1132   "Return the MIME charsets needed to encode the region between B and E.
1133 nil means ASCII, a single-element list represents an appropriate MIME
1134 charset, and a longer list means no appropriate charset."
1135   (let (charsets)
1136     ;; The return possibilities of this function are a mess...
1137     (or (and (mm-multibyte-p)
1138              mm-use-find-coding-systems-region
1139              ;; Find the mime-charset of the most preferred coding
1140              ;; system that has one.
1141              (let ((systems (find-coding-systems-region b e)))
1142                (when mm-coding-system-priorities
1143                  (setq systems
1144                        (sort systems 'mm-sort-coding-systems-predicate)))
1145                (setq systems (delq 'compound-text systems))
1146                (unless (equal systems '(undecided))
1147                  (while systems
1148                    (let* ((head (pop systems))
1149                           (cs (or (coding-system-get head :mime-charset)
1150                                   (coding-system-get head 'mime-charset))))
1151                      ;; The mime-charset (`x-ctext') of
1152                      ;; `compound-text' is not in the IANA list.  We
1153                      ;; shouldn't normally use anything here with a
1154                      ;; mime-charset having an `x-' prefix.
1155                      ;; Fixme:  Allow this to be overridden, since
1156                      ;; there is existing use of x-ctext.
1157                      ;; Also people apparently need the coding system
1158                      ;; `iso-2022-jp-3' (which Mule-UCS defines with
1159                      ;; mime-charset, though it's not valid).
1160                      (if (and cs
1161                               (not (string-match "^[Xx]-" (symbol-name cs)))
1162                               ;; UTF-16 of any variety is invalid for
1163                               ;; text parts and, unfortunately, has
1164                               ;; mime-charset defined both in Mule-UCS
1165                               ;; and versions of Emacs.  (The name
1166                               ;; might be `mule-utf-16...'  or
1167                               ;; `utf-16...'.)
1168                               (not (string-match "utf-16" (symbol-name cs))))
1169                          (setq systems nil
1170                                charsets (list cs))))))
1171                charsets))
1172         ;; If we're XEmacs, and some coding system is appropriate,
1173         ;; mm-xemacs-find-mime-charset will return an appropriate list.
1174         ;; Otherwise, we'll get nil, and the next setq will get invoked.
1175         (setq charsets (mm-xemacs-find-mime-charset b e))
1176
1177         ;; Fixme: won't work for unibyte Emacs 23:
1178
1179         ;; We're not multibyte, or a single coding system won't cover it.
1180         (setq charsets
1181               (mm-delete-duplicates
1182                (mapcar 'mm-mime-charset
1183                        (delq 'ascii
1184                              (mm-find-charset-region b e))))))
1185     (if (and (> (length charsets) 1)
1186              (memq 'iso-8859-15 charsets)
1187              (memq 'iso-8859-15 hack-charsets)
1188              (save-excursion (mm-iso-8859-x-to-15-region b e)))
1189         (dolist (x mm-iso-8859-15-compatible)
1190           (setq charsets (delq (car x) charsets))))
1191     (if (and (memq 'iso-2022-jp-2 charsets)
1192              (memq 'iso-2022-jp-2 hack-charsets))
1193         (setq charsets (delq 'iso-2022-jp charsets)))
1194     ;; Attempt to reduce the number of charsets if utf-8 is available.
1195     (if (and (featurep 'xemacs)
1196              (> (length charsets) 1)
1197              (mm-coding-system-p 'utf-8))
1198         (let ((mm-coding-system-priorities
1199                (cons 'utf-8 mm-coding-system-priorities)))
1200           (setq charsets
1201                 (mm-delete-duplicates
1202                  (mapcar 'mm-mime-charset
1203                          (delq 'ascii
1204                                (mm-find-charset-region b e)))))))
1205     charsets))
1206
1207 (defmacro mm-with-unibyte-buffer (&rest forms)
1208   "Create a temporary buffer, and evaluate FORMS there like `progn'.
1209 Use unibyte mode for this."
1210   `(with-temp-buffer
1211      (mm-disable-multibyte)
1212      ,@forms))
1213 (put 'mm-with-unibyte-buffer 'lisp-indent-function 0)
1214 (put 'mm-with-unibyte-buffer 'edebug-form-spec '(body))
1215
1216 (defmacro mm-with-multibyte-buffer (&rest forms)
1217   "Create a temporary buffer, and evaluate FORMS there like `progn'.
1218 Use multibyte mode for this."
1219   `(with-temp-buffer
1220      (mm-enable-multibyte)
1221      ,@forms))
1222 (put 'mm-with-multibyte-buffer 'lisp-indent-function 0)
1223 (put 'mm-with-multibyte-buffer 'edebug-form-spec '(body))
1224
1225 (defmacro mm-with-unibyte-current-buffer (&rest forms)
1226   "Evaluate FORMS with current buffer temporarily made unibyte.
1227 Equivalent to `progn' in XEmacs.
1228
1229 Note: We recommend not using this macro any more; there should be
1230 better ways to do a similar thing.  The previous version of this macro
1231 bound the default value of `enable-multibyte-characters' to nil while
1232 evaluating FORMS but it is no longer done.  So, some programs assuming
1233 it if any may malfunction."
1234   (if (featurep 'xemacs)
1235       `(progn ,@forms)
1236     (let ((multibyte (make-symbol "multibyte")))
1237       `(let ((,multibyte enable-multibyte-characters))
1238          (when ,multibyte
1239            (set-buffer-multibyte nil))
1240          (prog1
1241              (progn ,@forms)
1242            (when ,multibyte
1243              (set-buffer-multibyte t)))))))
1244 (put 'mm-with-unibyte-current-buffer 'lisp-indent-function 0)
1245 (put 'mm-with-unibyte-current-buffer 'edebug-form-spec '(body))
1246
1247 (defun mm-find-charset-region (b e)
1248   "Return a list of Emacs charsets in the region B to E."
1249   (cond
1250    ((and (mm-multibyte-p)
1251          (fboundp 'find-charset-region))
1252     ;; Remove composition since the base charsets have been included.
1253     ;; Remove eight-bit-*, treat them as ascii.
1254     (let ((css (find-charset-region b e)))
1255       (dolist (cs
1256                '(composition eight-bit-control eight-bit-graphic control-1)
1257                css)
1258         (setq css (delq cs css)))))
1259    (t
1260     ;; We are in a unibyte buffer or XEmacs non-mule, so we futz around a bit.
1261     (save-excursion
1262       (save-restriction
1263         (narrow-to-region b e)
1264         (goto-char (point-min))
1265         (skip-chars-forward "\0-\177")
1266         (if (eobp)
1267             '(ascii)
1268           (let (charset)
1269             (setq charset
1270                   (and (boundp 'current-language-environment)
1271                        (car (last (assq 'charset
1272                                         (assoc current-language-environment
1273                                                language-info-alist))))))
1274             (if (eq charset 'ascii) (setq charset nil))
1275             (or charset
1276                 (setq charset
1277                       (car (last (assq mail-parse-charset
1278                                        mm-mime-mule-charset-alist)))))
1279             (list 'ascii (or charset 'latin-iso8859-1)))))))))
1280
1281 (defun mm-auto-mode-alist ()
1282   "Return an `auto-mode-alist' with only the .gz (etc) thingies."
1283   (let ((alist auto-mode-alist)
1284         out)
1285     (while alist
1286       (when (listp (cdar alist))
1287         (push (car alist) out))
1288       (pop alist))
1289     (nreverse out)))
1290
1291 (defvar mm-inhibit-file-name-handlers
1292   '(jka-compr-handler image-file-handler epa-file-handler)
1293   "A list of handlers doing (un)compression (etc) thingies.")
1294
1295 (defun mm-insert-file-contents (filename &optional visit beg end replace
1296                                          inhibit)
1297   "Like `insert-file-contents', but only reads in the file.
1298 A buffer may be modified in several ways after reading into the buffer due
1299 to advanced Emacs features, such as file-name-handlers, format decoding,
1300 `find-file-hooks', etc.
1301 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'.
1302   This function ensures that none of these modifications will take place."
1303   (letf* ((format-alist nil)
1304           (auto-mode-alist (if inhibit nil (mm-auto-mode-alist)))
1305           ((default-value 'major-mode) 'fundamental-mode)
1306           (enable-local-variables nil)
1307           (after-insert-file-functions nil)
1308           (enable-local-eval nil)
1309           (inhibit-file-name-operation (if inhibit
1310                                            'insert-file-contents
1311                                          inhibit-file-name-operation))
1312           (inhibit-file-name-handlers
1313            (if inhibit
1314                (append mm-inhibit-file-name-handlers
1315                        inhibit-file-name-handlers)
1316              inhibit-file-name-handlers))
1317           (ffh (if (boundp 'find-file-hook)
1318                    'find-file-hook
1319                  'find-file-hooks))
1320           (val (symbol-value ffh)))
1321     (set ffh nil)
1322     (unwind-protect
1323         (insert-file-contents filename visit beg end replace)
1324       (set ffh val))))
1325
1326 (defun mm-append-to-file (start end filename &optional codesys inhibit)
1327   "Append the contents of the region to the end of file FILENAME.
1328 When called from a function, expects three arguments,
1329 START, END and FILENAME.  START and END are buffer positions
1330 saying what text to write.
1331 Optional fourth argument specifies the coding system to use when
1332 encoding the file.
1333 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'."
1334   (let ((coding-system-for-write
1335          (or codesys mm-text-coding-system-for-write
1336              mm-text-coding-system))
1337         (inhibit-file-name-operation (if inhibit
1338                                          'append-to-file
1339                                        inhibit-file-name-operation))
1340         (inhibit-file-name-handlers
1341          (if inhibit
1342              (append mm-inhibit-file-name-handlers
1343                      inhibit-file-name-handlers)
1344            inhibit-file-name-handlers)))
1345     (write-region start end filename t 'no-message)
1346     (message "Appended to %s" filename)))
1347
1348 (defun mm-write-region (start end filename &optional append visit lockname
1349                               coding-system inhibit)
1350
1351   "Like `write-region'.
1352 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'."
1353   (let ((coding-system-for-write
1354          (or coding-system mm-text-coding-system-for-write
1355              mm-text-coding-system))
1356         (inhibit-file-name-operation (if inhibit
1357                                          'write-region
1358                                        inhibit-file-name-operation))
1359         (inhibit-file-name-handlers
1360          (if inhibit
1361              (append mm-inhibit-file-name-handlers
1362                      inhibit-file-name-handlers)
1363            inhibit-file-name-handlers)))
1364     (write-region start end filename append visit lockname)))
1365
1366 (autoload 'gmm-write-region "gmm-utils")
1367
1368 ;; It is not a MIME function, but some MIME functions use it.
1369 (if (and (fboundp 'make-temp-file)
1370          (ignore-errors
1371            (let ((def (symbol-function 'make-temp-file)))
1372              (and (byte-code-function-p def)
1373                   (setq def (if (fboundp 'compiled-function-arglist)
1374                                 ;; XEmacs
1375                                 (eval (list 'compiled-function-arglist def))
1376                               (aref def 0)))
1377                   (>= (length def) 4)
1378                   (eq (nth 3 def) 'suffix)))))
1379     (defalias 'mm-make-temp-file 'make-temp-file)
1380   ;; Stolen (and modified for XEmacs) from Emacs 22.
1381   (defun mm-make-temp-file (prefix &optional dir-flag suffix)
1382     "Create a temporary file.
1383 The returned file name (created by appending some random characters at the end
1384 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1385 is guaranteed to point to a newly created empty file.
1386 You can then use `write-region' to write new data into the file.
1387
1388 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
1389
1390 If SUFFIX is non-nil, add that at the end of the file name."
1391     (let ((umask (default-file-modes))
1392           file)
1393       (unwind-protect
1394           (progn
1395             ;; Create temp files with strict access rights.  It's easy to
1396             ;; loosen them later, whereas it's impossible to close the
1397             ;; time-window of loose permissions otherwise.
1398             (set-default-file-modes 448)
1399             (while (condition-case err
1400                        (progn
1401                          (setq file
1402                                (make-temp-name
1403                                 (expand-file-name
1404                                  prefix
1405                                  (if (fboundp 'temp-directory)
1406                                      ;; XEmacs
1407                                      (temp-directory)
1408                                    temporary-file-directory))))
1409                          (if suffix
1410                              (setq file (concat file suffix)))
1411                          (if dir-flag
1412                              (make-directory file)
1413                            ;; NOTE: This is unsafe if Emacs 20
1414                            ;; users and XEmacs users don't use
1415                            ;; a secure temp directory.
1416                            (gmm-write-region "" nil file nil 'silent
1417                                              nil 'excl))
1418                          nil)
1419                      (file-already-exists t)
1420                      ;; The XEmacs version of `make-directory' issues
1421                      ;; `file-error'.
1422                      (file-error (or (and (featurep 'xemacs)
1423                                           (file-exists-p file))
1424                                      (signal (car err) (cdr err)))))
1425               ;; the file was somehow created by someone else between
1426               ;; `make-temp-name' and `write-region', let's try again.
1427               nil)
1428             file)
1429         ;; Reset the umask.
1430         (set-default-file-modes umask)))))
1431
1432 (defun mm-image-load-path (&optional package)
1433   (let (dir result)
1434     (dolist (path load-path (nreverse result))
1435       (when (and path
1436                  (file-directory-p
1437                   (setq dir (concat (file-name-directory
1438                                      (directory-file-name path))
1439                                     "etc/images/" (or package "gnus/")))))
1440         (push dir result))
1441       (push path result))))
1442
1443 ;; Fixme: This doesn't look useful where it's used.
1444 (if (fboundp 'detect-coding-region)
1445     (defun mm-detect-coding-region (start end)
1446       "Like `detect-coding-region' except returning the best one."
1447       (let ((coding-systems
1448              (detect-coding-region start end)))
1449         (or (car-safe coding-systems)
1450             coding-systems)))
1451   (defun mm-detect-coding-region (start end)
1452     (let ((point (point)))
1453       (goto-char start)
1454       (skip-chars-forward "\0-\177" end)
1455       (prog1
1456           (if (eq (point) end) 'ascii (mm-guess-charset))
1457         (goto-char point)))))
1458
1459 (declare-function mm-detect-coding-region "mm-util" (start end))
1460
1461 (if (fboundp 'coding-system-get)
1462     (defun mm-detect-mime-charset-region (start end)
1463       "Detect MIME charset of the text in the region between START and END."
1464       (let ((cs (mm-detect-coding-region start end)))
1465         (or (coding-system-get cs :mime-charset)
1466             (coding-system-get cs 'mime-charset))))
1467   (defun mm-detect-mime-charset-region (start end)
1468     "Detect MIME charset of the text in the region between START and END."
1469     (let ((cs (mm-detect-coding-region start end)))
1470       cs)))
1471
1472 (eval-when-compile
1473   (unless (fboundp 'coding-system-to-mime-charset)
1474     (defalias 'coding-system-to-mime-charset 'ignore)))
1475
1476 (defun mm-coding-system-to-mime-charset (coding-system)
1477   "Return the MIME charset corresponding to CODING-SYSTEM.
1478 To make this function work with XEmacs, the APEL package is required."
1479   (when coding-system
1480     (or (and (fboundp 'coding-system-get)
1481              (or (coding-system-get coding-system :mime-charset)
1482                  (coding-system-get coding-system 'mime-charset)))
1483         (and (featurep 'xemacs)
1484              (or (and (fboundp 'coding-system-to-mime-charset)
1485                       (not (eq (symbol-function 'coding-system-to-mime-charset)
1486                                'ignore)))
1487                  (and (condition-case nil
1488                           (require 'mcharset)
1489                         (error nil))
1490                       (fboundp 'coding-system-to-mime-charset)))
1491              (coding-system-to-mime-charset coding-system)))))
1492
1493 (eval-when-compile
1494   (require 'jka-compr))
1495
1496 (defun mm-decompress-buffer (filename &optional inplace force)
1497   "Decompress buffer's contents, depending on jka-compr.
1498 Only when FORCE is t or `auto-compression-mode' is enabled and FILENAME
1499 agrees with `jka-compr-compression-info-list', decompression is done.
1500 Signal an error if FORCE is neither nil nor t and compressed data are
1501 not decompressed because `auto-compression-mode' is disabled.
1502 If INPLACE is nil, return decompressed data or nil without modifying
1503 the buffer.  Otherwise, replace the buffer's contents with the
1504 decompressed data.  The buffer's multibyteness must be turned off."
1505   (when (and filename
1506              (if force
1507                  (prog1 t (require 'jka-compr))
1508                (and (fboundp 'jka-compr-installed-p)
1509                     (jka-compr-installed-p))))
1510     (let ((info (jka-compr-get-compression-info filename)))
1511       (when info
1512         (unless (or (memq force (list nil t))
1513                     (jka-compr-installed-p))
1514           (error ""))
1515         (let ((prog (jka-compr-info-uncompress-program info))
1516               (args (jka-compr-info-uncompress-args info))
1517               (msg (format "%s %s..."
1518                            (jka-compr-info-uncompress-message info)
1519                            filename))
1520               (err-file (jka-compr-make-temp-name))
1521               (cur (current-buffer))
1522               (coding-system-for-read mm-binary-coding-system)
1523               (coding-system-for-write mm-binary-coding-system)
1524               retval err-msg)
1525           (message "%s" msg)
1526           (mm-with-unibyte-buffer
1527             (insert-buffer-substring cur)
1528             (condition-case err
1529                 (progn
1530                   (unless (memq (apply 'call-process-region
1531                                        (point-min) (point-max)
1532                                        prog t (list t err-file) nil args)
1533                                 jka-compr-acceptable-retval-list)
1534                     (erase-buffer)
1535                     (insert (mapconcat
1536                              'identity
1537                              (delete "" (split-string
1538                                          (prog2
1539                                              (insert-file-contents err-file)
1540                                              (buffer-string)
1541                                            (erase-buffer))))
1542                              " ")
1543                             "\n")
1544                     (setq err-msg
1545                           (format "Error while executing \"%s %s < %s\""
1546                                   prog (mapconcat 'identity args " ")
1547                                   filename)))
1548                   (setq retval (buffer-string)))
1549               (error
1550                (setq err-msg (error-message-string err)))))
1551           (when (file-exists-p err-file)
1552             (ignore-errors (delete-file err-file)))
1553           (when inplace
1554             (unless err-msg
1555               (delete-region (point-min) (point-max))
1556               (insert retval))
1557             (setq retval nil))
1558           (message "%s" (or err-msg (concat msg "done")))
1559           retval)))))
1560
1561 (eval-when-compile
1562   (unless (fboundp 'coding-system-name)
1563     (defalias 'coding-system-name 'ignore))
1564   (unless (fboundp 'find-file-coding-system-for-read-from-filename)
1565     (defalias 'find-file-coding-system-for-read-from-filename 'ignore))
1566   (unless (fboundp 'find-operation-coding-system)
1567     (defalias 'find-operation-coding-system 'ignore)))
1568
1569 (defun mm-find-buffer-file-coding-system (&optional filename)
1570   "Find coding system used to decode the contents of the current buffer.
1571 This function looks for the coding system magic cookie or examines the
1572 coding system specified by `file-coding-system-alist' being associated
1573 with FILENAME which defaults to `buffer-file-name'.  Data compressed by
1574 gzip, bzip2, etc. are allowed."
1575   (unless filename
1576     (setq filename buffer-file-name))
1577   (save-excursion
1578     (let ((decomp (unless ;; No worth to examine charset of tar files.
1579                       (and filename
1580                            (string-match
1581                             "\\.\\(?:tar\\.[^.]+\\|tbz\\|tgz\\)\\'"
1582                             filename))
1583                     (mm-decompress-buffer filename nil t))))
1584       (when decomp
1585         (set-buffer (generate-new-buffer " *temp*"))
1586         (mm-disable-multibyte)
1587         (insert decomp)
1588         (setq filename (file-name-sans-extension filename)))
1589       (goto-char (point-min))
1590       (prog1
1591           (cond
1592            ((boundp 'set-auto-coding-function) ;; Emacs
1593             (if filename
1594                 (or (funcall (symbol-value 'set-auto-coding-function)
1595                              filename (- (point-max) (point-min)))
1596                     (car (find-operation-coding-system 'insert-file-contents
1597                                                        filename)))
1598               (let (auto-coding-alist)
1599                 (condition-case nil
1600                     (funcall (symbol-value 'set-auto-coding-function)
1601                              nil (- (point-max) (point-min)))
1602                   (error nil)))))
1603            ((and (featurep 'xemacs) (featurep 'file-coding)) ;; XEmacs
1604             (let ((case-fold-search t)
1605                   (end (point-at-eol))
1606                   codesys start)
1607               (or
1608                (and (re-search-forward "-\\*-+[\t ]*" end t)
1609                     (progn
1610                       (setq start (match-end 0))
1611                       (re-search-forward "[\t ]*-+\\*-" end t))
1612                     (progn
1613                       (setq end (match-beginning 0))
1614                       (goto-char start)
1615                       (or (looking-at "coding:[\t ]*\\([^\t ;]+\\)")
1616                           (re-search-forward
1617                            "[\t ;]+coding:[\t ]*\\([^\t ;]+\\)"
1618                            end t)))
1619                     (find-coding-system (setq codesys
1620                                               (intern (match-string 1))))
1621                     codesys)
1622                (and (re-search-forward "^[\t ]*;+[\t ]*Local[\t ]+Variables:"
1623                                        nil t)
1624                     (progn
1625                       (setq start (match-end 0))
1626                       (re-search-forward "^[\t ]*;+[\t ]*End:" nil t))
1627                     (progn
1628                       (setq end (match-beginning 0))
1629                       (goto-char start)
1630                       (re-search-forward
1631                        "^[\t ]*;+[\t ]*coding:[\t ]*\\([^\t\n\r ]+\\)"
1632                        end t))
1633                     (find-coding-system (setq codesys
1634                                               (intern (match-string 1))))
1635                     codesys)
1636                (and (progn
1637                       (goto-char (point-min))
1638                       (setq case-fold-search nil)
1639                       (re-search-forward "^;;;coding system: "
1640                                          ;;(+ (point-min) 3000) t))
1641                                          nil t))
1642                     (looking-at "[^\t\n\r ]+")
1643                     (find-coding-system
1644                      (setq codesys (intern (match-string 0))))
1645                     codesys)
1646                (and filename
1647                     (setq codesys
1648                           (find-file-coding-system-for-read-from-filename
1649                            filename))
1650                     (coding-system-name (coding-system-base codesys)))))))
1651         (when decomp
1652           (kill-buffer (current-buffer)))))))
1653
1654 (provide 'mm-util)
1655
1656 ;;; mm-util.el ends here