Variable: eieio-custom-ignore-eieio-co

eieio-custom-ignore-eieio-co is a variable defined in eieio-custom.el.gz.

Value

nil

Documentation

When true, all customizable slots of the current object are updated.

Updates occur regardless of the current customization group.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-custom.el.gz
(define-widget 'object-slot 'group
  "Abstractly modify a single slot in an object."
  :tag "Slot"
  :format "%t %v%h\n"
  :convert-widget 'widget-types-convert-widget
  :value-create 'eieio-slot-value-create
  :value-get 'eieio-slot-value-get
  :value-delete 'widget-children-value-delete
  :validate 'widget-children-validate
  :match 'eieio-object-match ;; same
  )