Function: ede-flush-project-hash

ede-flush-project-hash is an interactive and byte-compiled function defined in files.el.gz.

Signature

(ede-flush-project-hash)

Documentation

Flush the file locate hash for the current project.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
(defun ede-flush-project-hash ()
  "Flush the file locate hash for the current project."
  (interactive)
  (require 'ede/locate)
  (let* ((loc (ede-get-locator-object (ede-current-project))))
    (when loc
      (ede-locate-flush-hash loc))))