Function: klabel:child-alpha

klabel:child-alpha is a byte-compiled function defined in klabel.el.

Signature

(klabel:child-alpha LABEL)

Documentation

Return label for first child of alpha LABEL.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
;;;
;;; alpha klabels
;;;

(defun klabel:child-alpha (label)
  "Return label for first child of alpha LABEL."
  (if (or (string-equal label "0")
	  (string-equal label ""))
      "1"
    (concat label (if (< (aref label (1- (length label))) ?a)
		      "a" "1"))))