Function: string-glyph-compose

string-glyph-compose is an autoloaded and byte-compiled function defined in ucs-normalize.el.gz.

Signature

(string-glyph-compose STRING)

Documentation

Compose STRING according to the Unicode NFC.

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

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

Other relevant functions are documented in the string group.

Shortdoc

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

Source Code

;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
;;;###autoload
(defun string-glyph-compose (string)
  "Compose STRING according to the Unicode NFC.
This returns a new string obtained by canonical decomposition
of STRING (see `ucs-normalize-NFC-string') followed by canonical
composition, a.k.a. the \"Unicode Normalization Form C\" of STRING.
For instance:

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