Function: kotl-label:increment-alpha

kotl-label:increment-alpha is a byte-compiled function defined in klabel.el.

Signature

(kotl-label:increment-alpha LABEL)

Documentation

Return alphabetic LABEL incremented by 1.

For example, z would become aa, and aa would become bb. LABEL must be >= a.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun kotl-label:increment-alpha (label)
  "Return alphabetic LABEL incremented by 1.
For example, z would become aa, and aa would become bb.  LABEL must be >= a."
  (kotl-label:int-to-alpha (1+ (kotl-label:alpha-to-int label))))