Function: klabel-type:alpha-label
klabel-type:alpha-label is a byte-compiled function defined in
klabel.el.
Signature
(klabel-type:alpha-label PREV-LABEL &optional CHILD-P)
Documentation
Return full alphanumeric label, e.g. 1a2, 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:alpha-label (prev-label &optional child-p)
"Return full alphanumeric label, e.g. 1a2, for cell following PREV-LABEL's cell.
With optional CHILD-P, return label for first child cell of PREV-LABEL cell."
(if child-p
(klabel:child prev-label)
(klabel:increment prev-label)))