From 52af4268f14bc9cf85d4be607792849c8757a349 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 3 Mar 1992 12:12:40 +0000
Subject: [PATCH] Allow LISP:AND, LISP:OR, and LISP:NOT in features lists in
 addition to :AND, :OR, and :NOT.  This makes featurep useful outside of #+
 and #-.

---
 code/misc.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/code/misc.lisp b/code/misc.lisp
index 67e297171..d2add7778 100644
--- a/code/misc.lisp
+++ b/code/misc.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.14 1992/02/14 23:45:17 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.15 1992/03/03 12:12:40 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -71,9 +71,9 @@
   handle arbitrary combinations of atoms using NOT, AND, OR."
   (if (consp x)
       (case (car x)
-	(:not (not (featurep (cadr x))))
-	(:and (every #'featurep (cdr x)))
-	(:or (some #'featurep (cdr x)))
+	((:not not) (not (featurep (cadr x))))
+	((:and and) (every #'featurep (cdr x)))
+	((:or or) (some #'featurep (cdr x)))
 	(t
 	 (error "Unknown operator in feature expression: ~S." x)))
       (not (null (memq x *features*)))))
-- 
GitLab