Function: kotl-label:create

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

Signature

(kotl-label:create INT-OR-STRING)

Documentation

Return new kcell label from INT-OR-STRING.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun kotl-label:create (int-or-string)
  "Return new kcell label from INT-OR-STRING."
  (cond ((integerp int-or-string) (int-to-string int-or-string))
	((equal int-or-string "") "0")
	(t int-or-string)))