Description: Fix detection of 32-bit feature on CLISP
 The feature “word-size=32” is not pushed on 32-bit arches. Rather test for the
 absence of “word-size=64”.
Author: Sébastien Villemot <sebastien@debian.org>
Forwarded: https://github.com/trivial-features/trivial-features/pull/20
Last-Update: 2021-11-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/tf-clisp.lisp
+++ b/src/tf-clisp.lisp
@@ -72,4 +72,4 @@
              *features*)))
 
 #+word-size=64 (pushnew :64-bit *features*)
-#+word-size=32 (pushnew :32-bit *features*)
+#-word-size=64 (pushnew :32-bit *features*)
