Function: ucs-normalize-string

ucs-normalize-string is a macro defined in ucs-normalize.el.gz.

Signature

(ucs-normalize-string UCS-NORMALIZE-REGION)

Documentation

Normalize string STR using the function UCS-NORMALIZE-REGION.

Source Code

;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
;; --------------------------------------------------------------------------------

(defmacro ucs-normalize-string (ucs-normalize-region)
  "Normalize string STR using the function UCS-NORMALIZE-REGION."
  `(with-temp-buffer
     (insert str)
     (,ucs-normalize-region (point-min) (point-max))
     (buffer-string)))