Function: eieio-customize-object-group

eieio-customize-object-group is a byte-compiled function defined in eieio-custom.el.gz.

Signature

(eieio-customize-object-group ARG &rest ARGS)

Implementations

((obj eieio-default-superclass)) in `eieio-custom.el'.

Create a list of vectors for customizing sections of OBJ.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-custom.el.gz
;;; customization group functions
;;
;; These functions provide the ability to create dynamic menus to
;; customize specific sections of an object.  They do not hook directly
;; into a filter, but can be used to create easymenu vectors.
(cl-defmethod eieio-customize-object-group ((obj eieio-default-superclass))
  "Create a list of vectors for customizing sections of OBJ."
  (mapcar (lambda (group)
	    (vector (concat "Group " (symbol-name group))
		    (list 'customize-object obj (list 'quote group))
		    t))
	  (eieio--class-option (eieio--object-class obj) :custom-groups)))