("Korean"): Fix `documentation' property of this language environment.
authorKenichi Handa <handa@m17n.org>
Thu, 18 Jun 2009 01:15:43 +0000 (01:15 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 18 Jun 2009 01:15:43 +0000 (01:15 +0000)
lisp/ChangeLog
lisp/language/korean.el

index 8a6b2b6..0e8bed3 100644 (file)
@@ -1,5 +1,8 @@
 2009-06-18  Kenichi Handa  <handa@m17n.org>
 
+       * language/korean.el ("Korean"): Fix `documentation' property of
+       this language environment.
+
        * language/korea-util.el (korean-key-bindings): Add binding for
        key Hangul.
 
index 731ded4..e8e78bf 100644 (file)
@@ -43,7 +43,6 @@
 
 (define-coding-system-alias 'euc-kr 'korean-iso-8bit)
 (define-coding-system-alias 'euc-korea 'korean-iso-8bit)
-(define-coding-system-alias 'cp949 'korean-iso-8bit)
 
 (define-coding-system 'iso-2022-kr
   "ISO 2022 based 7-bit encoding for Korean KSC5601 (MIME:ISO-2022-KR)."
 
 (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr)
 
+(define-coding-system 'korean-cp949
+  "CP949 (Microsoft Unified Hangul Code)"
+  :coding-type 'charset
+  :mnemonic ?K
+  :charset-list '(ascii cp949))
+
+(define-coding-system-alias 'cp949 'korean-cp949)
+
 (set-language-info-alist
  "Korean" '((setup-function . setup-korean-environment-internal)
            (exit-function . exit-korean-environment)
            (coding-priority korean-iso-8bit iso-2022-kr)
            (sample-text . "Hangul (\e$(CGQ1[\e(B)        \e$(C>H3gGO<<?d\e(B, \e$(C>H3gGO=J4O1n\e(B")
            (documentation . "\
-The following key bindings are available while using Korean input methods:
-  Shift-SPC:   toggle-korean-input-mthod
-  Control-F9:  quail-hangul-switch-symbol-ksc
-  F9:          quail-hangul-switch-hanja")
+The following key bindings are available for controlling Korean input methods:
+  Shift-SPC, Hangul:   toggle-korean-input-method
+  Control-F9:          quail-hangul-switch-symbol-ksc
+  F9:                  quail-hangul-switch-hanja
+and the following key bindings are available within Korean input methods:
+  F9, Hangul_Hanja:    hangul-to-hanja-conversion")
            ))
 
 (provide 'korean)