Function: ucs-normalize-HFS-NFC-region

ucs-normalize-HFS-NFC-region is an interactive and byte-compiled function defined in ucs-normalize.el.gz.

Signature

(ucs-normalize-HFS-NFC-region FROM TO)

Documentation

Normalize region between FROM and TO by Unicode NFC and Mac OS's HFS Plus.

Probably introduced at or before Emacs version 23.2.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/international/ucs-normalize.el.gz
(defun ucs-normalize-HFS-NFC-region (from to)
  "Normalize region between FROM and TO by Unicode NFC and Mac OS's HFS Plus."
  (interactive "r")
  (ucs-normalize-region from to
                        ucs-normalize-hfs-nfc-quick-check-regexp
                        'ucs-normalize-hfs-nfd-table t))