Function: hywiki-directory-get-checksum

hywiki-directory-get-checksum is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-directory-get-checksum)

Documentation

Compute and return the checksum for the current set of HyWiki pages.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-directory-get-checksum ()
  "Compute and return the checksum for the current set of HyWiki pages."
  (let ((hywiki-page-files (hywiki-get-page-files)))
    (when hywiki-page-files
      (md5 (apply #'concat hywiki-page-files) nil nil nil t))))