Function: hanja-list-terminate
hanja-list-terminate is a byte-compiled function defined in
hanja-util.el.gz.
Signature
(hanja-list-terminate)
Documentation
Exit from the hanja listing mode with the currently selected character.
Source Code
;; Defined in /usr/src/emacs/lisp/language/hanja-util.el.gz
(defun hanja-list-terminate ()
"Exit from the hanja listing mode with the currently selected character."
(let ((base (aref hanja-conversions 0))
(offset (aref hanja-conversions 1))
(hanja-list (aref hanja-conversions 2)))
(throw 'exit-input-loop
(car (nth (+ (* base hanja-list-width) offset) hanja-list)))))