Variable: yank-excluded-properties

yank-excluded-properties is a customizable variable defined in simple.el.gz.

Value

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

Documentation

Text properties to discard when yanking.

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

See also yank-handled-properties.

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

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
;; This is actually used in subr.el but defcustom does not work there.
(defcustom yank-excluded-properties
  '(category field follow-link fontified font-lock-face help-echo
    intangible invisible keymap local-map mouse-face read-only
    yank-handler)
  "Text properties to discard when yanking.
The value should be a list of text properties to discard or t,
which means to discard all text properties.

See also `yank-handled-properties'."
  :type '(choice (const :tag "All" t) (repeat symbol))
  :group 'killing
  :version "24.3")