(default-korean-keyboard): Initialize it

according to the environment variable HANGUL_KEYBOARD_TYPE.
This commit is contained in:
Kenichi Handa 1999-09-08 01:22:00 +00:00
parent 5a4c88c4f4
commit 01ba5cc0c1

View file

@ -24,7 +24,10 @@
;;; Code:
;;;###autoload
(defvar default-korean-keyboard ""
(defvar default-korean-keyboard
(if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") ""))
"3"
"")
"*The kind of Korean keyboard for Korean input method.
\"\" for 2, \"3\" for 3.")