Function: ede-customize-target
ede-customize-target is a byte-compiled function defined in
custom.el.gz.
Signature
(ede-customize-target OBJ)
Documentation
Edit fields of the current target through EIEIO & Custom.
OBJ is the target object to customize.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/custom.el.gz
(defun ede-customize-target (obj)
"Edit fields of the current target through EIEIO & Custom.
OBJ is the target object to customize."
(require 'eieio-custom)
(if (and obj (not (obj-of-class-p obj 'ede-target)))
(error "No logical target to customize"))
(ede-customize obj))