Function: ucs-normalize-NFKD-region

ucs-normalize-NFKD-region is an interactive and byte-compiled function defined in ucs-normalize.el.gz.

Signature

(ucs-normalize-NFKD-region FROM TO)

Documentation

Decompose the region between FROM and TO according to the Unicode NFKD.

This replaces the text between FROM and TO with its compatibility decomposition, a.k.a. "Unicode Normalization Form KD".

Probably introduced at or before Emacs version 23.2.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
(defun ucs-normalize-NFKD-region (from to)
  "Decompose the region between FROM and TO according to the Unicode NFKD.
This replaces the text between FROM and TO with its compatibility
decomposition, a.k.a. \"Unicode Normalization Form KD\"."
  (interactive "r")
  (ucs-normalize-region from to
                        ucs-normalize-nfkd-quick-check-regexp
                        'ucs-normalize-nfkd-table nil))