diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:08 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:08 +0000 |
commit | 2899af3ff7a762c820c367e05e8a2f8805811567 (patch) | |
tree | ee0db8b7b50e14da62e160dba806d354d71c821a | |
parent | 5a291d7da6f836133c3dcba1ff9d95a3eb14276d (diff) | |
download | guile-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.h | 2 |
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)) |