Function: ucs-normalize-NFC-string

ucs-normalize-NFC-string is a byte-compiled function defined in ucs-normalize.el.gz.

Signature

(ucs-normalize-NFC-string STR)

Documentation

Compose STR according to the Unicode NFC.

This returns a new string obtained by canonical decomposition of STR (see ucs-normalize-NFC-string) followed by canonical composition, a.k.a. the "Unicode Normalization Form C" of STR. For instance:

  (string-glyph-compose "Å") => "Å"

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-NFC-string (str)
  "Compose STR according to the Unicode NFC.
This returns a new string obtained by canonical decomposition
of STR (see `ucs-normalize-NFC-string') followed by canonical
composition, a.k.a. the \"Unicode Normalization Form C\" of STR.
For instance:

  (string-glyph-compose \"Å\") => \"Å\""
  (ucs-normalize-string ucs-normalize-NFC-region))