forked from wanderlust/apel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpces-xm.el
78 lines (60 loc) · 2.47 KB
/
pces-xm.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
;;; pces-xm.el --- pces module for XEmacs-mule
;; Copyright (C) 1998,1999 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <[email protected]>
;; Keywords: emulation, compatibility, Mule
;; This file is part of APEL (A Portable Emacs Library).
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
;;; @ fix coding-system definition
;;;
;; It seems not bug, but I can not permit it...
(and (coding-system-property 'iso-2022-jp 'input-charset-conversion)
(copy-coding-system 'iso-2022-7bit 'iso-2022-jp))
(and (coding-system-property 'iso-2022-jp-dos 'input-charset-conversion)
(copy-coding-system 'iso-2022-7bit-dos 'iso-2022-jp-dos))
(or (find-coding-system 'ctext-dos)
(make-coding-system
'ctext 'iso2022
"Coding-system used in X as Compound Text Encoding."
'(charset-g0 ascii charset-g1 latin-iso8859-1
eol-type nil
mnemonic "CText")))
(or (find-coding-system 'iso-2022-jp-2-dos)
(make-coding-system
'iso-2022-jp-2 'iso2022
"ISO-2022 coding system using SS2 for 96-charset in 7-bit code."
'(charset-g0 ascii
charset-g2 t ;; unspecified but can be used later.
seven t
short t
mnemonic "ISO7/SS2"
eol-type nil)))
(or (find-coding-system 'gb2312-dos)
(copy-coding-system 'cn-gb-2312-dos 'gb2312-dos))
(or (find-coding-system 'gb2312-mac)
(copy-coding-system 'cn-gb-2312-mac 'gb2312-mac))
(or (find-coding-system 'gb2312-unix)
(copy-coding-system 'cn-gb-2312-unix 'gb2312-unix))
(or (find-coding-system 'euc-kr-dos)
(make-coding-system
'euc-kr 'iso2022
"Coding-system of Korean EUC (Extended Unix Code)."
'(charset-g0 ascii charset-g1 korean-ksc5601
mnemonic "ko/EUC"
eol-type nil)))
;;; @ end
;;;
(require 'product)
(product-provide (provide 'pces-xm) (require 'apel-ver))
;;; pces-xm.el ends here