Function: quail-delete-last-char
quail-delete-last-char is an interactive and byte-compiled function
defined in quail.el.gz.
Signature
(quail-delete-last-char)
Documentation
Delete the last input character from the current Quail key sequence.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/international/quail.el.gz
(defun quail-delete-last-char ()
"Delete the last input character from the current Quail key sequence."
(interactive)
(if (= (length quail-current-key) 1)
(quail-abort-translation)
(setq quail-current-key (substring quail-current-key 0 -1))
(quail-delete-region)
(quail-update-translation (quail-translate-key))))