Function: kcell:copy

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

Signature

(kcell:copy KCELL)

Documentation

Return a copy of KCELL.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kcell.el
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************

;;;
;;; kcell - In-memory representation of Koutline cells
;;;

(defun kcell:copy (kcell)
  "Return a copy of KCELL."
  (copy-tree kcell))