diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:07:05 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:07:05 +0000 |
commit | 5e5f51c37d575944192dc7a6fc2ec7718152fda3 (patch) | |
tree | dfd0e9dafefb9c60efd4c6d7f52dd1c62dc33a6a | |
parent | 227211409320570be6be6f876555c111bd54536b (diff) | |
download | guile-5e5f51c37d575944192dc7a6fc2ec7718152fda3.tar.gz |
* eval.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/eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index f8e739abd..3ebe18a0f 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -226,7 +226,7 @@ SCM_API SCM scm_m_letrec (SCM xorig, SCM env); SCM_API SCM scm_m_let (SCM xorig, SCM env); SCM_API SCM scm_m_apply (SCM xorig, SCM env); SCM_API SCM scm_m_cont (SCM xorig, SCM env); -#ifdef SCM_ENABLE_ELISP +#if SCM_ENABLE_ELISP SCM_API SCM scm_m_nil_cond (SCM xorig, SCM env); SCM_API SCM scm_m_atfop (SCM xorig, SCM env); #endif /* SCM_ENABLE_ELISP */ |