Function: kcell-view:idstamp
kcell-view:idstamp is a byte-compiled function defined in kview.el.
Signature
(kcell-view:idstamp &optional POS)
Documentation
Return idstamp string of cell at optional POS or point.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:idstamp (&optional pos)
"Return idstamp string of cell at optional POS or point."
(save-excursion
(goto-char (or pos (kcell-view:plist-point)))
(format "0%s" (or (kproperty:get (point) 'idstamp) ""))))