Function: ede-customize-project

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

Signature

(ede-customize-project)

Documentation

Edit fields of the current project through EIEIO & Custom.

Key Bindings

Aliases

customize-project

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/custom.el.gz
;;; Customization Commands
;;
;; These commands initialize customization of EDE control objects.

;;;###autoload
(defun ede-customize-project ()
  "Edit fields of the current project through EIEIO & Custom."
  (interactive)
  (require 'eieio-custom)
  (let* ((ov (oref (ede-current-project) local-variables))
	 (cp (ede-current-project)))
    (ede-customize cp)
    (setq-local eieio-ede-old-variables ov)))