Function: quail-hangul-switch-hanja

quail-hangul-switch-hanja is an interactive and byte-compiled function defined in korea-util.el.gz.

Signature

(quail-hangul-switch-hanja &rest IGNORE)

Documentation

Switch to/from Korean hanja package.

The keyboard layout variation used is determined by default-korean-keyboard.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/language/korea-util.el.gz
(defun quail-hangul-switch-hanja (&rest _ignore)
  "Switch to/from Korean hanja package.
The keyboard layout variation used is determined by
`default-korean-keyboard'."
  (interactive "i")
  (and current-input-method
       (if (string-match "korean-hanja" current-input-method)
	   (activate-input-method (concat "korean-hangul"
					  default-korean-keyboard))
	 (activate-input-method (concat "korean-hanja"
					default-korean-keyboard)))))