Function: allout-current-decorated-p

allout-current-decorated-p is a byte-compiled function defined in allout-widgets.el.gz.

Signature

(allout-current-decorated-p)

Documentation

True if the current item is not decorated.

Source Code

;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_   > allout-current-decorated-p ()
(defun allout-current-decorated-p ()
  "True if the current item is not decorated."
  (save-excursion
    (if (allout-back-to-current-heading)
        (if (> allout-recent-depth 0)
            (and (allout-get-item-widget) t)
          allout-container-item-widget))))