Mercurial > emacs
annotate lisp/language/korean.el @ 110135:42aea1f448f8
merge trunk
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 02 Sep 2010 09:58:05 +0900 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
42152
diff
changeset
|
1 ;;; korean.el --- support for Korean -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
17052 | 2 |
106815 | 3 ;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
74544 | 4 ;; Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
74544
diff
changeset
|
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
106815 | 6 ;; 2005, 2006, 2007, 2008, 2009, 2010 |
62396 | 7 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
8 ;; Registration Number H14PRO021 | |
89483 | 9 ;; Copyright (C) 2003 |
10 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
11 ;; Registration Number H13PRO009 | |
17052 | 12 |
13 ;; Keywords: multilingual, Korean | |
14 | |
15 ;; This file is part of GNU Emacs. | |
16 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17052 | 18 ;; it under the terms of the GNU General Public License as published by |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
19 ;; the Free Software Foundation, either version 3 of the License, or |
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
20 ;; (at your option) any later version. |
17052 | 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 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17052 | 29 |
30 ;;; Commentary: | |
31 | |
32 ;; For Korean, the character set KSC5601 is supported. | |
33 | |
34 ;;; Code: | |
35 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
36 (define-coding-system 'korean-iso-8bit |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
37 "ISO 2022 based EUC encoding for Korean KSC5601 (MIME:EUC-KR)." |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
38 :coding-type 'iso-2022 |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
39 :mnemonic ?K |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
40 :designation [ascii korean-ksc5601 nil nil] |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
41 :charset-list '(ascii korean-ksc5601) |
88513 | 42 :mime-charset 'euc-kr) |
17052 | 43 |
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
44 (define-coding-system-alias 'euc-kr 'korean-iso-8bit) |
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
45 (define-coding-system-alias 'euc-korea 'korean-iso-8bit) |
17052 | 46 |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
47 (define-coding-system 'iso-2022-kr |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
48 "ISO 2022 based 7-bit encoding for Korean KSC5601 (MIME:ISO-2022-KR)." |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
49 :coding-type 'iso-2022 |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
50 :mnemonic ?k |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
51 :designation [ascii (nil korean-ksc5601) nil nil] |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
52 :flags '(ascii-at-eol ascii-at-cntl 7-bit designation locking-shift |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
53 designation-bol) |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
54 :charset-list '(ascii korean-ksc5601) |
90218
b97b12425a1a
(iso-2022-kr): Set :suitable-for-keyboard property to 1.
Kenichi Handa <handa@m17n.org>
parents:
90200
diff
changeset
|
55 :mime-charset 'iso-2022-kr |
b97b12425a1a
(iso-2022-kr): Set :suitable-for-keyboard property to 1.
Kenichi Handa <handa@m17n.org>
parents:
90200
diff
changeset
|
56 :suitable-for-keyboard t) |
17052 | 57 |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20437
diff
changeset
|
58 (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
59 |
103477
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
60 (define-coding-system 'korean-cp949 |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
61 "CP949 (Microsoft Unified Hangul Code)" |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
62 :coding-type 'charset |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
63 :mnemonic ?K |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
64 :charset-list '(ascii cp949)) |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
65 |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
66 (define-coding-system-alias 'cp949 'korean-cp949) |
6e845b9ff9bc
* language/korean.el (korean-cp949): New coding system. Set cp949
Chong Yidong <cyd@stupidchicken.com>
parents:
103472
diff
changeset
|
67 |
17052 | 68 (set-language-info-alist |
22988
618d123d5dd3
("Korean"): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
22983
diff
changeset
|
69 "Korean" '((setup-function . setup-korean-environment-internal) |
20157
2e075af4e648
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
19367
diff
changeset
|
70 (exit-function . exit-korean-environment) |
94950
3b921e5fd500
("Korean"): Set `iso639-language' property to `ko'.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
71 (iso639-language . ko) |
21487 | 72 (tutorial . "TUTORIAL.ko") |
103662
832dbf5214bc
(set-language-info-alist): Add korean-cp949, cp949 to spec.
Kenichi Handa <handa@m17n.org>
parents:
103477
diff
changeset
|
73 (charset korean-ksc5601 cp949) |
832dbf5214bc
(set-language-info-alist): Add korean-cp949, cp949 to spec.
Kenichi Handa <handa@m17n.org>
parents:
103477
diff
changeset
|
74 (coding-system iso-2022-kr korean-iso-8bit korean-cp949) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
21509
diff
changeset
|
75 (input-method . "korean-hangul") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
21509
diff
changeset
|
76 (features korea-util) |
103662
832dbf5214bc
(set-language-info-alist): Add korean-cp949, cp949 to spec.
Kenichi Handa <handa@m17n.org>
parents:
103477
diff
changeset
|
77 (coding-priority korean-iso-8bit korean-cp949 iso-2022-kr) |
17770
0d0e69cee17d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
78 (sample-text . "Hangul ($(CGQ1[(B) $(C>H3gGO<<?d(B, $(C>H3gGO=J4O1n(B") |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20437
diff
changeset
|
79 (documentation . "\ |
103468
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
80 The following key bindings are available for controlling Korean input methods: |
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
81 Shift-SPC, Hangul: toggle-korean-input-method |
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
82 Control-F9: quail-hangul-switch-symbol-ksc |
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
83 F9: quail-hangul-switch-hanja |
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
84 and the following key bindings are available within Korean input methods: |
2b8f8bb24ec9
("Korean"): Fix `documentation' property of this language environment.
Kenichi Handa <handa@m17n.org>
parents:
100908
diff
changeset
|
85 F9, Hangul_Hanja: hangul-to-hanja-conversion") |
20157
2e075af4e648
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
19367
diff
changeset
|
86 )) |
17052 | 87 |
33778 | 88 (provide 'korean) |
89 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
90 ;; arch-tag: ca7c7348-5ca3-4623-887a-7fd33d725d0e |
17052 | 91 ;;; korean.el ends here |