Function: checkdoc-list-of-strings-p
checkdoc-list-of-strings-p is a byte-compiled function defined in
checkdoc.el.gz.
This function is obsolete since 29.1; use list-of-strings-p instead.
Signature
(checkdoc-list-of-strings-p OBJ)
Documentation
Return t when OBJ is a list of strings.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defun checkdoc-list-of-strings-p (obj)
"Return t when OBJ is a list of strings."
(declare (obsolete list-of-strings-p "29.1"))
;; this is a function so it might be shared by checkdoc-proper-noun-list
;; and/or checkdoc-ispell-lisp-words in the future
(and (listp obj)
(not (memq nil (mapcar #'stringp obj)))))