Function: klabel:idstamp-p

klabel:idstamp-p is a byte-compiled function defined in klabel.el.

Signature

(klabel:idstamp-p LABEL)

Documentation

Return t if LABEL is an idstamp label, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun klabel:idstamp-p (label)
  "Return t if LABEL is an idstamp label, else nil."
  (cond ((stringp label)
	 (if (string-match "\\`0[0-9]+\\'" label) t))
	((integerp label)
	 (>= label 0))))