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