Function: hfy-load-tags-cache

hfy-load-tags-cache is a byte-compiled function defined in htmlfontify.el.gz.

Signature

(hfy-load-tags-cache SRCDIR)

Documentation

Run hfy-etags-cmd on SRCDIR, then call hfy-parse-tags-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
;; cache the #(tag => file line point) entries for files under srcdir
;; and cache the descending sorted list of tags in the relevant alist,
;; also keyed by srcdir:
(defun hfy-load-tags-cache (srcdir)
  "Run `hfy-etags-cmd' on SRCDIR, then call `hfy-parse-tags-buffer'."
  ;;(message "hfy-load-tags-cache");;DBUG
  (let ((etags-buffer  (get-buffer-create     "*hfy-tags*"))
        (etags-command (format hfy-etags-cmd hfy-etags-bin))
        (shell-file-name                        (hfy-shell)))
    (cd srcdir)
    (shell-command  etags-command etags-buffer)
    (hfy-parse-tags-buffer srcdir etags-buffer)) )