Function: kview:top-cell

kview:top-cell is a byte-compiled function defined in kview.el.

Signature

(kview:top-cell KVIEW)

Documentation

Return KVIEW's invisible top cell with idstamp 0 or nil if not a kview.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kview:top-cell (kview)
  "Return KVIEW's invisible top cell with idstamp 0 or nil if not a kview."
  (when (kview:is-p kview)
    (kview:get-attr kview 'top-cell)))