Variable: activities-anti-save-predicates

activities-anti-save-predicates is a customizable variable defined in activities.el.

Value

(active-minibuffer-window activities--backtrace-visible-p)

Documentation

Predicates which prevent an activity's state from being saved.

Each predicate is called without arguments, with the activity to be saved having been activated. If any predicate returns non-nil, the activity's state is not saved.

Source Code

;; Defined in ~/.emacs.d/elpa/activities-0.7.2/activities.el
(defcustom activities-anti-save-predicates
  '(active-minibuffer-window activities--backtrace-visible-p)
  "Predicates which prevent an activity's state from being saved.
Each predicate is called without arguments, with the activity to
be saved having been activated.  If any predicate returns
non-nil, the activity's state is not saved."
  :type '(set (function-item active-minibuffer-window)
              (function-item activities--backtrace-visible-p)
              (function :tag "Other predicate")))