Function: kotl-label:child
kotl-label:child is a byte-compiled function defined in klabel.el.
Signature
(kotl-label:child LABEL)
Documentation
Return child label of partial alpha LABEL.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun kotl-label:child (label)
"Return child label of partial alpha LABEL."
(cond ((or (string-equal label "0")
(string-equal label ""))
"1")
((kotl-label:integer-p label) "a")
(t "1")))