Function: editorconfig-string-integer-p
editorconfig-string-integer-p is a byte-compiled function defined in
editorconfig.el.gz.
Signature
(editorconfig-string-integer-p STRING)
Documentation
Return non-nil if STRING represents integer.
Source Code
;; Defined in /usr/src/emacs/lisp/editorconfig.el.gz
(defun editorconfig-string-integer-p (string)
"Return non-nil if STRING represents integer."
(and (stringp string)
(string-match-p "\\`[0-9]+\\'" string)))