Function: decompose-string
decompose-string is a byte-compiled function defined in
composite.el.gz.
Signature
(decompose-string STRING)
Documentation
Return STRING where composition property is removed.
Probably introduced at or before Emacs version 21.1.
Source Code
;; Defined in /usr/src/emacs/lisp/composite.el.gz
(defun decompose-string (string)
"Return STRING where `composition' property is removed."
(remove-text-properties 0 (length string) '(composition nil) string)
string)