Function: ede-customize

ede-customize is a byte-compiled function defined in config.el.gz.

Signature

(ede-customize ARG &rest ARGS)

Implementations

(ede-customize (TARGET ede-target)) in `ede/custom.el'.

Customize the EDE TARGET.

(ede-customize (PROJ ede-project)) in `ede/custom.el'.

Customize the EDE project PROJ.

(ede-customize (TARGET ede-target-with-config)) in `ede/config.el'.

Customize the EDE TARGET by actually configuring the config object.

(ede-customize (PROJ ede-project-with-config)) in `ede/config.el'.

Customize the EDE project PROJ by actually configuring the config object.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
;;; Customization
;;
(cl-defmethod ede-customize ((proj ede-project-with-config))
  "Customize the EDE project PROJ by actually configuring the config object."
  (let ((config (ede-config-get-configuration proj t)))
    (eieio-customize-object config)))