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