Mercurial > emacs
annotate lisp/language/korean.el @ 18103:8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
scnhdr.h or syms.h. Add many other conditionalized definitions.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 02 Jun 1997 00:09:40 +0000 |
parents | 084d922fcd78 |
children | 0745f30aec66 |
rev | line source |
---|---|
17052 | 1 ;;; korean.el --- Support for Korean |
2 | |
3 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
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 | |
17071 | 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. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; For Korean, the character set KSC5601 is supported. | |
28 | |
29 ;;; Code: | |
30 | |
31 (make-coding-system | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
32 'euc-kr 2 ?K |
17052 | 33 "Coding-system of Korean EUC (Extended Unix Code)." |
34 '((ascii t) korean-ksc5601 nil nil | |
35 nil ascii-eol ascii-cntl)) | |
36 | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
37 (define-coding-system-alias 'euc-kr 'euc-korea) |
17052 | 38 |
39 (make-coding-system | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
40 'iso-2022-kr 2 ?k |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
41 "MIME ISO-2022-KR" |
17052 | 42 '(ascii (nil korean-ksc5601) nil nil |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
43 nil ascii-eol ascii-cntl seven locking-shift nil nil nil nil nil |
17770
0d0e69cee17d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
44 designation-bol)) |
17052 | 45 |
46 (register-input-method | |
47 "Korean" '("quail-hangul" quail-use-package "quail/hangul")) | |
48 (register-input-method | |
49 "Korean" '("quail-hangul3" quail-use-package "quail/hangul3")) | |
50 (register-input-method | |
51 "Korean" '("quail-hanja" quail-use-package "quail/hanja")) | |
52 (register-input-method | |
53 "Korean" '("quail-symbol-ksc" quail-use-package "quail/symbol-ksc")) | |
54 (register-input-method | |
55 "Korean" '("quail-hanja-jis" quail-use-package "quail/hanja-jis")) | |
56 | |
57 (defun setup-korean-environment () | |
17770
0d0e69cee17d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
58 "Setup multilingual environment (MULE) for Korean." |
0d0e69cee17d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
59 (interactive) |
0d0e69cee17d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
60 (setup-english-environment) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
61 (setq coding-category-iso-8-2 'euc-kr) |
17052 | 62 |
63 (set-coding-priority | |
64 '(coding-category-iso-7 | |
65 coding-category-iso-8-2 | |
66 coding-category-iso-8-1)) | |
67 | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
68 (setq-default buffer-file-coding-system 'euc-kr) |
17052 | 69 |
70 (setq default-input-method '("Korean" . "quail-hangul")) | |
71 ) | |
72 | |
73 (set-language-info-alist | |
74 "Korean" '((setup-function . setup-korean-environment) | |
75 (tutorial . "TUTORIAL.kr") | |
76 (charset . (korean-ksc5601)) | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
77 (coding-system . (euc-kr 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") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17770
diff
changeset
|
79 (documentation . t))) |
17052 | 80 |
81 ;;; korean.el ends here |