Function: project-add-file

project-add-file is a byte-compiled function defined in ede.el.gz.

Signature

(project-add-file ARG &rest ARGS)

Implementations

(project-add-file (OT project-am-target) &optional FILE) in `ede/project-am.el'.

Add the current buffer into a project. _FILE is ignored. OT is the object target. DIR is the directory to start in.

(project-add-file (THIS ede-proj-target) FILE) in `ede/proj.el'.

Add to target THIS the current buffer represented as FILE.

(project-add-file (OT ede-target) FILE) in `ede.el'.

Add the current buffer into project target OT. Argument FILE is the file to add.

(project-add-file (THIS ede-project-placeholder) FILE) in `ede.el'.

Make sure placeholder THIS is replaced with the real thing, and pass through.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(cl-defmethod project-add-file ((this ede-project-placeholder) file)
					; checkdoc-params: (file)
  "Make sure placeholder THIS is replaced with the real thing, and pass through."
  (project-add-file this file))