Function: c-string-list-p
c-string-list-p is an autoloaded and byte-compiled function defined in
cc-vars.el.gz.
Signature
(c-string-list-p VAL)
Documentation
Return non-nil if VAL is a list of strings.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-vars.el.gz
;;;###autoload
(defun c-string-list-p (val)
"Return non-nil if VAL is a list of strings."
(and
(listp val)
(catch 'string
(dolist (elt val)
(if (not (stringp elt))
(throw 'string nil)))
t)))