Variable: text-property-default-nonsticky

text-property-default-nonsticky is a variable defined in textprop.c.

Value

((fill-space . t) (composition . t) (syntax-table . t) (display . t))

Documentation

Alist of properties vs the corresponding non-stickiness.

Each element has the form (PROPERTY . NONSTICKINESS).

If a character in a buffer has PROPERTY, new text inserted adjacent to the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil, inherits it if NONSTICKINESS is nil. The front-sticky and rear-nonsticky properties of the character override NONSTICKINESS.

View in manual

Source Code

// Defined in /usr/src/emacs/src/textprop.c
  DEFVAR_LISP ("text-property-default-nonsticky",
	       Vtext_property_default_nonsticky,
	       doc: /* Alist of properties vs the corresponding non-stickiness.
Each element has the form (PROPERTY . NONSTICKINESS).

If a character in a buffer has PROPERTY, new text inserted adjacent to
the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil,
inherits it if NONSTICKINESS is nil.  The `front-sticky' and
`rear-nonsticky' properties of the character override NONSTICKINESS.  */);