Function: klabel-type:star-label

klabel-type:star-label is a byte-compiled function defined in klabel.el.

Signature

(klabel-type:star-label PREV-LABEL &optional CHILD-P)

Documentation

Return full star label, e.g. ***, for cell following PREV-LABEL's cell.

With optional CHILD-P, return label for first child cell of PREV-LABEL cell.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun klabel-type:star-label (prev-label &optional child-p)
  "Return full star label, e.g. ***, for cell following PREV-LABEL's cell.
With optional CHILD-P, return label for first child cell of PREV-LABEL cell."
  (if child-p
      (concat prev-label "*")
    prev-label))