Function: eieio-custom-widget-insert

eieio-custom-widget-insert is a byte-compiled function defined in eieio-custom.el.gz.

Signature

(eieio-custom-widget-insert ARG &rest ARGS)

Implementations

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

Insert the widget used for editing object OBJ in the current buffer. Arguments FLAGS are widget compatible flags. Must return the created widget.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-custom.el.gz
(cl-defmethod eieio-custom-widget-insert ((obj eieio-default-superclass)
				       &rest flags)
  "Insert the widget used for editing object OBJ in the current buffer.
Arguments FLAGS are widget compatible flags.
Must return the created widget."
  (apply 'widget-create 'object-edit :value obj flags))