Function: ucs-normalize-NFKC-region

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

Signature

(ucs-normalize-NFKC-region FROM TO)

Documentation

Compose the region between FROM and TO according to the Unicode NFKC.

This replaces the text between FROM and TO with the result of its compatibility decomposition (see ucs-normalize-NFC-region) followed by canonical composition, a.k.a. the "Unicode Normalization Form KC".

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-NFKC-region (from to)
  "Compose the region between FROM and TO according to the Unicode NFKC.
This replaces the text between FROM and TO with the result of its
compatibility decomposition (see `ucs-normalize-NFC-region') followed by
canonical composition, a.k.a. the \"Unicode Normalization Form KC\"."
  (interactive "r")
  (ucs-normalize-region from to
                        ucs-normalize-nfkc-quick-check-regexp
                        'ucs-normalize-nfkd-table t))