Function: ede-flush-directory-hash

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

Signature

(ede-flush-directory-hash)

Documentation

Flush the project directory hash.

Do this only when developing new projects that are incorrectly putting
'nomatch tokens into the hash.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/files.el.gz
(defun ede-flush-directory-hash ()
  "Flush the project directory hash.
Do this only when developing new projects that are incorrectly putting
'nomatch tokens into the hash."
  (interactive)
  (setq ede-project-directory-hash (make-hash-table :test 'equal))
  ;; Also slush the current project's locator hash.
  (let ((loc (ede-get-locator-object ede-object)))
    (when loc
      (ede-locate-flush-hash loc)))
  )