Function: checkdoc-list-of-strings-p

checkdoc-list-of-strings-p is an autoloaded and byte-compiled function defined in checkdoc.el.gz.

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
;;;###autoload
(defun checkdoc-list-of-strings-p (obj)
  "Return t when OBJ is a list of strings."
  ;; 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)))))