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