Function: hangul-input-method-deactivate
hangul-input-method-deactivate is an interactive and byte-compiled
function defined in hangul.el.gz.
Signature
(hangul-input-method-deactivate)
Documentation
Deactivate the current Hangul input method.
Probably introduced at or before Emacs version 24.3.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/leim/quail/hangul.el.gz
(defun hangul-input-method-deactivate ()
"Deactivate the current Hangul input method."
(interactive)
(unwind-protect
(progn
(quail-hide-guidance)
(quail-delete-overlays)
(setq describe-current-input-method-function nil))
(kill-local-variable 'input-method-function)))