summaryrefslogtreecommitdiff
path: root/libguile/pairs.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-10-03 05:02:36 +0000
committerJim Blandy <jimb@red-bean.com>1996-10-03 05:02:36 +0000
commit3c205827ce39a80518d6ffaa4e05714f8f8f8400 (patch)
tree1afa536f9cea3c834e9334d57f6a1a5b30e81a7e /libguile/pairs.h
parentee81f9ca7bea75f30fcf47241440ff51c31ec510 (diff)
downloadguile-3c205827ce39a80518d6ffaa4e05714f8f8f8400.tar.gz
Distinguish #f and ().
* __scm.h: #undef SICP. * pairs.h (SCM_EOL): Delete this definition, equating it with SCM_BOOL_F. * tags.h (SCM_EOL): Give it a new definition here; I think I found the value it used to have. Doc fixes, too.
Diffstat (limited to 'libguile/pairs.h')
-rw-r--r--libguile/pairs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/pairs.h b/libguile/pairs.h
index bac63ae37..fd0771115 100644
--- a/libguile/pairs.h
+++ b/libguile/pairs.h
@@ -89,7 +89,6 @@ typedef SCM huge *SCMPTR;
#define SCM_PTR_LE(x, y) (!SCM_PTR_GT(x, y))
#define SCM_PTR_GE(x, y) (!SCM_PTR_LT(x, y))
-#define SCM_EOL SCM_BOOL_F
#define SCM_NULLP(x) (SCM_EOL == (x))
#define SCM_NNULLP(x) (SCM_EOL != (x))