Function: kcell:create
kcell:create is a byte-compiled function defined in kcell.el.
Signature
(kcell:create &optional PLIST)
Documentation
Return a new kcell with optional property list, PLIST.
User id of creator of cell and create-time are added to cell's PLIST if
not already there.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kcell.el
(defun kcell:create (&optional plist)
"Return a new kcell with optional property list, PLIST.
User id of `creator' of cell and `create-time' are added to cell's PLIST if
not already there."
(nconc
(unless (memq 'creator plist)
(list 'creator hyperb:user-email
'create-time (htz:date-sortable-gmt)))
plist))