root/trunk/lisp/language/korean.el

Revision 4220, 2.8 kB (checked in by miyoshi, 9 months ago)

Sync up with Emacs22.2.

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