Function: allout-widgets-undecorate-text

allout-widgets-undecorate-text is a byte-compiled function defined in allout-widgets.el.gz.

Signature

(allout-widgets-undecorate-text TEXT)

Documentation

Eliminate widgets and decorations for all items in TEXT.

Source Code

;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_   > allout-widgets-undecorate-text (text)
(defun allout-widgets-undecorate-text (text)
  "Eliminate widgets and decorations for all items in TEXT."
  (remove-text-properties 0 (length text)
                          '(display nil :icon-state nil rear-nonsticky nil
                            category nil button nil field nil)
                          text)
  text)