Function: list-of-strings-p

list-of-strings-p is a byte-compiled function defined in subr.el.gz.

Signature

(list-of-strings-p OBJECT)

Documentation

Return t if OBJECT is nil or a list of strings.

Aliases

org-list-of-strings-p

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun list-of-strings-p (object)
  "Return t if OBJECT is nil or a list of strings."
  (declare (pure t) (side-effect-free error-free))
  (while (and (consp object) (stringp (car object)))
    (setq object (cdr object)))
  (null object))