Initial Commit
[packages] / mule-packages / mule-ucs / lisp / jisx0213 / x0213-cdef.el
1 ;;; x0213-cdef.el --- Character set definition for JIS X 0213:2000
2
3 ;; Copyright (C) 2000 Miyashita Hisashi
4
5 ;; Keywords: mule, multilingual, character set, JIS X 0213
6
7 ;; This file is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; This program is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with this program; if not, write to the Free Software
19 ;; Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
21
22 ;;; This module defines character set for Japanese JIS X 0213.
23
24 (if (not (charsetp 'japanese-jisx0213-1))
25     (define-charset 151 'japanese-jisx0213-1
26       [2 94 2 0 ?O 0 "JISX0213-1" "JISX0213-1" "JISX0213-1 (Japanese)"]))
27
28 (if (not (charsetp 'japanese-jisx0213-2))
29     (define-charset 254 'japanese-jisx0213-2
30       [2 94 2 0 ?P 0 "JISX0213-2" "JISX0213-2" "JISX0213-2 (Japanese)"]))
31
32 (set-language-info "Japanese" 'charset
33                    '(japanese-jisx0208 japanese-jisx0208-1978
34                      japanese-jisx0213-1 japanese-jisx0213-2
35                      japanese-jisx0212 latin-jisx0201 katakana-jisx0201))
36
37 (provide 'x0213-cdef)