Function: ucs-normalize-block-compose-chars

ucs-normalize-block-compose-chars is a byte-compiled function defined in ucs-normalize.el.gz.

Signature

(ucs-normalize-block-compose-chars CHARS COMPOSITION-PREDICATE)

Documentation

Try composing CHARS by COMPOSITION-PREDICATE.

If COMPOSITION-PREDICATE is not given, then do nothing.

Source Code

;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
(defun ucs-normalize-block-compose-chars (chars composition-predicate)
  "Try composing CHARS by COMPOSITION-PREDICATE.
If COMPOSITION-PREDICATE is not given, then do nothing."
  (let ((chars (ucs-normalize-sort chars)))
    (if composition-predicate
        (ucs-normalize-compose-chars chars composition-predicate)
      chars)))