Function: kcell:is-p

kcell:is-p is a byte-compiled function defined in kcell.el.

Signature

(kcell:is-p OBJECT)

Documentation

Is OBJECT a kcell?

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kcell.el
(defun kcell:is-p (object)
  "Is OBJECT a kcell?"
  (and (listp object) (plist-get object 'creator)))