Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-15
[bpt/emacs.git] / lisp / language / korean.el
1 ;;; korean.el --- support for Korean -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 2003
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H13PRO009
8
9 ;; Keywords: multilingual, Korean
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
30 ;; For Korean, the character set KSC5601 is supported.
31
32 ;;; Code:
33
34 (define-coding-system 'korean-iso-8bit
35 "ISO 2022 based EUC encoding for Korean KSC5601 (MIME:EUC-KR)."
36 :coding-type 'iso-2022
37 :mnemonic ?K
38 :designation [ascii korean-ksc5601 nil nil]
39 :charset-list '(ascii korean-ksc5601)
40 :mime-charset 'euc-kr)
41
42 (define-coding-system-alias 'euc-kr 'korean-iso-8bit)
43 (define-coding-system-alias 'euc-korea 'korean-iso-8bit)
44 (define-coding-system-alias 'cp949 'korean-iso-8bit)
45
46 (define-coding-system 'iso-2022-kr
47 "ISO 2022 based 7-bit encoding for Korean KSC5601 (MIME:ISO-2022-KR)."
48 :coding-type 'iso-2022
49 :mnemonic ?k
50 :designation [ascii (nil korean-ksc5601) nil nil]
51 :flags '(ascii-at-eol ascii-at-cntl 7-bit designation locking-shift
52 designation-bol)
53 :charset-list '(ascii korean-ksc5601)
54 :mime-charset 'iso-2022-kr)
55
56 (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr)
57
58 (set-language-info-alist
59 "Korean" '((setup-function . setup-korean-environment-internal)
60 (exit-function . exit-korean-environment)
61 (tutorial . "TUTORIAL.ko")
62 (charset korean-ksc5601)
63 (coding-system iso-2022-kr korean-iso-8bit)
64 (input-method . "korean-hangul")
65 (features korea-util)
66 (coding-priority korean-iso-8bit iso-2022-kr)
67 (sample-text . "Hangul (\e$(CGQ1[\e(B) \e$(C>H3gGO<<?d\e(B, \e$(C>H3gGO=J4O1n\e(B")
68 (documentation . "\
69 The following key bindings are available while using Korean input methods:
70 Shift-SPC: toggle-korean-input-mthod
71 Control-F9: quail-hangul-switch-symbol-ksc
72 F9: quail-hangul-switch-hanja")
73 ))
74
75 (provide 'korean)
76
77 ;;; arch-tag: ca7c7348-5ca3-4623-887a-7fd33d725d0e
78 ;;; korean.el ends here