Function: kotl-label:increment-int

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

Signature

(kotl-label:increment-int INT-STRING)

Documentation

Return INT-STRING label incremented by 1.

For example, "14" would become "15".

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun kotl-label:increment-int (int-string)
  "Return INT-STRING label incremented by 1.
For example, \"14\" would become \"15\"."
  (int-to-string (1+ (string-to-number int-string))))