Function: list-of-strings-p
list-of-strings-p is a byte-compiled function defined in compat-29.el.
Signature
(list-of-strings-p OBJECT)
Documentation
[Compatibility function for list-of-strings-p, defined in Emacs 29.1. See
(compat) Emacs 29.1' for more details.]
Return t if OBJECT is nil or a list of strings.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/compat-30.1.0.1/compat-29.el
(compat-defun list-of-strings-p (object) ;; <compat-tests:list-of-strings-p>
"Return t if OBJECT is nil or a list of strings."
(declare (pure t) (side-effect-free t))
(while (and (consp object) (stringp (car object)))
(setq object (cdr object)))
(null object))