Function: reftex-no-props
reftex-no-props is a byte-compiled function defined in reftex.el.gz.
Signature
(reftex-no-props STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-no-props (string)
;; Return STRING with all text properties removed
(and (stringp string)
(set-text-properties 0 (length string) nil string))
string)