Function: filesets-data-get
filesets-data-get is a byte-compiled function defined in
filesets.el.gz.
Signature
(filesets-data-get ENTRY KEY &optional DEFAULT CARP)
Documentation
Extract the value for KEY in the data part of fileset ENTRY.
Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil.
Source Code
;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-data-get (entry key &optional default carp)
"Extract the value for KEY in the data part of fileset ENTRY.
Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil."
(filesets-alist-get (filesets-data-get-data entry) key default carp))