Function: ede-description
ede-description is a byte-compiled function defined in base.el.gz.
Signature
(ede-description ARG &rest ARGS)
Implementations
(ede-description (THIS ede-target)) in `ede/base.el'.
Return a description suitable for the minibuffer about THIS.
(ede-description (THIS ede-project)) in `ede/base.el'.
Return a description suitable for the minibuffer about THIS.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
(cl-defmethod ede-description ((this ede-project))
"Return a description suitable for the minibuffer about THIS."
(format "Project %s: %d subprojects, %d targets."
(ede-name this) (length (oref this subproj))
(length (oref this targets))))