Function: ucs-normalize-HFS-NFD-region
ucs-normalize-HFS-NFD-region is an autoloaded, interactive and
byte-compiled function defined in ucs-normalize.el.gz.
Signature
(ucs-normalize-HFS-NFD-region FROM TO)
Documentation
Normalize the current region by the Unicode NFD 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
;;;###autoload
(defun ucs-normalize-HFS-NFD-region (from to)
"Normalize the current region by the Unicode NFD and Mac OS's HFS Plus."
(interactive "r")
(ucs-normalize-region from to
ucs-normalize-hfs-nfd-quick-check-regexp
'ucs-normalize-hfs-nfd-table
'ucs-normalize-hfs-nfd-comp-p))