Function: ucs-normalize-NFD-string
ucs-normalize-NFD-string is a byte-compiled function defined in
ucs-normalize.el.gz.
Signature
(ucs-normalize-NFD-string STR)
Documentation
Decompose the string STR according to the Unicode NFD.
This returns a new string that is the canonical decomposition of STR, a.k.a. the "Unicode Normalization Form D" of STR. For instance:
(ucs-normalize-NFD-string "Å") => "Å"
Probably introduced at or before Emacs version 23.2.
Source Code
;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
(defun ucs-normalize-NFD-string (str)
"Decompose the string STR according to the Unicode NFD.
This returns a new string that is the canonical decomposition of STR,
a.k.a. the \"Unicode Normalization Form D\" of STR. For instance:
(ucs-normalize-NFD-string \"Å\") => \"Å\""
(ucs-normalize-string ucs-normalize-NFD-region))