Function: ede-proj-register-target

ede-proj-register-target is a byte-compiled function defined in proj.el.gz.

Signature

(ede-proj-register-target NAME CLASS)

Documentation

Register a new target class with NAME and class symbol CLASS.

This enables the creation of your target type.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/proj.el.gz
(defun ede-proj-register-target (name class)
  "Register a new target class with NAME and class symbol CLASS.
This enables the creation of your target type."
  (let ((a (assoc name ede-proj-target-alist)))
    (if a
	(setcdr a class)
      (setq ede-proj-target-alist
	    (cons (cons name class) ede-proj-target-alist)))))