Function: ede--directory-project-add-description-to-hash

ede--directory-project-add-description-to-hash is a byte-compiled function defined in files.el.gz.

Signature

(ede--directory-project-add-description-to-hash DIR DESC)

Documentation

Add to the EDE project hash DIR associated with DESC.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
(defun ede--directory-project-add-description-to-hash (dir desc)
  "Add to the EDE project hash DIR associated with DESC."
  (setq dir (expand-file-name dir))
  (puthash dir desc ede-project-directory-hash)
  desc)