Variable: occur-excluded-properties

occur-excluded-properties is a customizable variable defined in replace.el.gz.

Value

(read-only invisible intangible field mouse-face help-echo local-map
	   keymap yank-handler follow-link)

Documentation

Text properties to discard when copying lines to the *Occur* buffer.

The value should be a list of text properties to discard or t, which means to discard all text properties.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defcustom occur-excluded-properties
  '(read-only invisible intangible field mouse-face help-echo local-map keymap
    yank-handler follow-link)
  "Text properties to discard when copying lines to the *Occur* buffer.
The value should be a list of text properties to discard or t,
which means to discard all text properties."
  :type '(choice (const :tag "All" t) (repeat symbol))
  :group 'matching
  :version "22.1")