Function: kotl-label:alpha-p
kotl-label:alpha-p is a byte-compiled function defined in klabel.el.
Signature
(kotl-label:alpha-p LABEL)
Documentation
Return LABEL if LABEL is composed of all alphabetic characters, else return nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klabel.el
(defun kotl-label:alpha-p (label)
"Return LABEL if LABEL is composed of all alphabetic characters, else return nil."
(if (string-match "\\`[a-zA-Z]+\\'" label) label))