Function: org-indent-remove-properties-from-string

org-indent-remove-properties-from-string is a byte-compiled function defined in org-indent.el.gz.

Signature

(org-indent-remove-properties-from-string STRING)

Documentation

Remove indentation properties from STRING.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-indent.el.gz
(defun org-indent-remove-properties-from-string (string)
  "Remove indentation properties from STRING."
  (remove-text-properties 0 (length string)
			  '(line-prefix nil wrap-prefix nil) string)
  string)