From ac995967b18c2e1a4ed05c7b43801fffa28d8cba Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Tue, 7 Mar 2006 11:46:43 +0000 Subject: [PATCH] Add symbol-or-list-p predicate for beyond ansi tests --- ansi-tests/beyond-ansi/ba-aux.lsp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansi-tests/beyond-ansi/ba-aux.lsp b/ansi-tests/beyond-ansi/ba-aux.lsp index 77175115..cce99661 100644 --- a/ansi-tests/beyond-ansi/ba-aux.lsp +++ b/ansi-tests/beyond-ansi/ba-aux.lsp @@ -21,6 +21,9 @@ (null (cddr x)) (function-name-p (cadr x))))) +(defun symbol-or-list-p (x) + (or (symbolp x) (listp x))) + (defun function-designator-p (x) (or (functionp x) (and (symbolp x) (not (macro-function x)) (not (special-operator-p x))))) -- GitLab