Lift macro-symbolp to lists.
(macro-symbol-listp x wrld) → std::bool
This is an ordinary std::deflist. It is
"strict" in that it requires
Function:
(defun macro-symbol-listp (x wrld) (declare (xargs :guard (and (symbol-listp x) (plist-worldp wrld)))) (let ((__function__ 'macro-symbol-listp)) (declare (ignorable __function__)) (if (consp x) (and (macro-symbolp (car x) wrld) (macro-symbol-listp (cdr x) wrld)) (null x))))