Function: hfy-tags-for-file
hfy-tags-for-file is a byte-compiled function defined in
htmlfontify.el.gz.
Signature
(hfy-tags-for-file CACHE-HASH FILE)
Documentation
List of etags tags that have definitions in this FILE.
CACHE-HASH is the tags cache.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
;; list of tags in file in srcdir
(defun hfy-tags-for-file (cache-hash file)
"List of etags tags that have definitions in this FILE.
CACHE-HASH is the tags cache."
;;(message "hfy-tags-for-file");;DBUG
(let* ((tag-list nil))
(if cache-hash
(maphash
(lambda (K V)
(if (assoc file V)
(setq tag-list (cons K tag-list))))
cache-hash))
tag-list))