Function: hangul-delete-backward-char
hangul-delete-backward-char is an interactive and byte-compiled
function defined in hangul.el.gz.
Signature
(hangul-delete-backward-char)
Documentation
Delete the previous hangul character by Jaso units.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/leim/quail/hangul.el.gz
(defun hangul-delete-backward-char ()
"Delete the previous hangul character by Jaso units."
(interactive)
(let ((i 5))
(while (and (> i 0) (zerop (aref hangul-queue i)))
(setq i (1- i)))
(aset hangul-queue i 0))
(if (notzerop (apply #'+ (append hangul-queue nil)))
(hangul-insert-character hangul-queue)
(delete-char -1)))