Function: ucs-normalize-NFC-region

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

Signature

(ucs-normalize-NFC-region FROM TO)

Documentation

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

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

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