Function: filesets-entry-get-dormant-flag
filesets-entry-get-dormant-flag is a byte-compiled function defined in
filesets.el.gz.
Signature
(filesets-entry-get-dormant-flag ENTRY)
Documentation
Get dormant flag for fileset ENTRY.
Source Code
;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-entry-get-dormant-flag (entry)
"Get dormant flag for fileset ENTRY."
(let ((fn (filesets-data-get entry ':dormant-p nil t)))
(if fn
(funcall fn)
(filesets-data-get entry ':dormant-flag nil t))))