Function: ede-name

ede-name is a byte-compiled function defined in base.el.gz.

Signature

(ede-name ARG &rest ARGS)

Implementations

(ede-name (THIS ede-project)) in `ede/base.el'.

Return a short-name for THIS project file. Do this by extracting the lowest directory name.

(ede-name (THIS ede-target)) in `ede/base.el'.

Return the name of THIS target.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
;;; Default descriptive methods for EDE classes
;;
;; These are methods which you might want to override, but there is
;; no need to in most situations because they are either a) simple, or
;; b) cosmetic.

(cl-defmethod ede-name ((this ede-target))
  "Return the name of THIS target."
  (oref this name))