Function: ucs-normalize-NFKD-region
ucs-normalize-NFKD-region is an autoloaded, interactive and
byte-compiled function defined in ucs-normalize.el.gz.
Signature
(ucs-normalize-NFKD-region FROM TO)
Documentation
Normalize the current region by the Unicode NFKD.
Probably introduced at or before Emacs version 23.2.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
;;;###autoload
(defun ucs-normalize-NFKD-region (from to)
"Normalize the current region by the Unicode NFKD."
(interactive "r")
(ucs-normalize-region from to
ucs-normalize-nfkd-quick-check-regexp
'ucs-normalize-nfkd-table nil))