Function: ucs-normalize-NFD-region

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

Signature

(ucs-normalize-NFD-region FROM TO)

Documentation

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

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

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-NFD-region (from to)
  "Decompose the region between FROM and TO according to the Unicode NFD.
This replaces the text between FROM and TO with its canonical decomposition,
a.k.a. the \"Unicode Normalization Form D\"."
  (interactive "r")
  (ucs-normalize-region from to
                        ucs-normalize-nfd-quick-check-regexp
                        'ucs-normalize-nfd-table nil))