]> code.delx.au - gnu-emacs/blob - lisp/language/korean.el
*** empty log message ***
[gnu-emacs] / 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
45 (define-coding-system 'iso-2022-kr
46 "ISO 2022 based 7-bit encoding for Korean KSC5601 (MIME:ISO-2022-KR)."
47 :coding-type 'iso-2022
48 :mnemonic ?k
49 :designation [ascii (nil korean-ksc5601) nil nil]
50 :flags '(ascii-at-eol ascii-at-cntl 7-bit designation locking-shift
51 designation-bol)
52 :charset-list '(ascii korean-ksc5601)
53 :mime-charset 'iso-2022-kr)
54
55 (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr)
56
57 (set-language-info-alist
58 "Korean" '((setup-function . setup-korean-environment-internal)
59 (exit-function . exit-korean-environment)
60 (tutorial . "TUTORIAL.ko")
61 (charset korean-ksc5601)
62 (coding-system iso-2022-kr korean-iso-8bit)
63 (input-method . "korean-hangul")
64 (features korea-util)
65 (coding-priority korean-iso-8bit iso-2022-kr)
66 (sample-text . "Hangul (\e$(CGQ1[\e(B) \e$(C>H3gGO<<?d\e(B, \e$(C>H3gGO=J4O1n\e(B")
67 (documentation . "\
68 The following key bindings are available while using Korean input methods:
69 Shift-SPC: toggle-korean-input-mthod
70 Control-F9: quail-hangul-switch-symbol-ksc
71 F9: quail-hangul-switch-hanja")
72 ))
73
74 (provide 'korean)
75
76 ;;; korean.el ends here