Function: hywiki-directory-modified-p
hywiki-directory-modified-p is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-directory-modified-p)
Documentation
Return non-nil if any HyWiki page name change since last read.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-directory-modified-p ()
"Return non-nil if any HyWiki page name change since last read."
(or (null hywiki--directory-mod-time)
;; Both dir mod-time and filename checksum over HyWiki page
;; files must have changed for this to be an update to report.
;; Don't change this logic as many other dir changes can occur
;; that should not be reported here.
(not (or (equal hywiki--directory-mod-time (hywiki-directory-get-mod-time))
(string-equal hywiki--directory-checksum (hywiki-directory-get-checksum))))))