Function: ede--project-inode

ede--project-inode is a byte-compiled function defined in files.el.gz.

Signature

(ede--project-inode ARG &rest ARGS)

Implementations

(ede--project-inode (PROJ ede-project-placeholder)) in `ede/files.el'.

Get the inode of the directory project PROJ is in.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
(cl-defmethod ede--project-inode ((proj ede-project-placeholder))
  "Get the inode of the directory project PROJ is in."
  (if (slot-boundp proj 'dirinode)
      (oref proj dirinode)
    (oset proj dirinode (ede--inode-for-dir (oref proj directory)))))