summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:08 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:08 +0000
commit2899af3ff7a762c820c367e05e8a2f8805811567 (patch)
treeee0db8b7b50e14da62e160dba806d354d71c821a
parent5a291d7da6f836133c3dcba1ff9d95a3eb14276d (diff)
downloadguile-2899af3ff7a762c820c367e05e8a2f8805811567.tar.gz
* lang.h: fix various preprocessor usages of new public
symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc.
-rw-r--r--libguile/lang.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/lang.h b/libguile/lang.h
index 07585bce5..e9d965e7c 100644
--- a/libguile/lang.h
+++ b/libguile/lang.h
@@ -50,7 +50,7 @@
-#ifdef SCM_ENABLE_ELISP
+#if SCM_ENABLE_ELISP
#define SCM_NILP(x) (SCM_EQ_P ((x), SCM_ELISP_NIL))