Function: ede-customize-current-target

ede-customize-current-target is an autoloaded, interactive and byte-compiled function defined in custom.el.gz.

Signature

(ede-customize-current-target)

Documentation

Edit fields of the current target through EIEIO & Custom.

Key Bindings

Aliases

customize-target

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/custom.el.gz
;;;###autoload
(defun ede-customize-current-target()
  "Edit fields of the current target through EIEIO & Custom."
  (interactive)
  (require 'eieio-custom)
  (if (not (obj-of-class-p ede-object 'ede-target))
      (error "Current file is not part of a target"))
  (ede-customize-target ede-object))