Function: ede-calc-fromconfig
ede-calc-fromconfig is a byte-compiled function defined in auto.el.gz.
Signature
(ede-calc-fromconfig ARG &rest ARGS)
Implementations
(ede-calc-fromconfig (DIRMATCH ede-project-autoload-dirmatch)) in `ede/auto.el'.
Calculate the value of :fromconfig from DIRMATCH.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/auto.el.gz
(cl-defmethod ede-calc-fromconfig ((dirmatch ede-project-autoload-dirmatch))
"Calculate the value of :fromconfig from DIRMATCH."
(let* ((fc (oref dirmatch fromconfig))
(found (cond ((stringp fc) fc)
((functionp fc) (funcall fc))
(t (error "Unknown dirmatch object match style")))))
(expand-file-name found)
))