diff options
author | Jim Blandy <jimb@red-bean.com> | 1998-10-14 07:32:13 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1998-10-14 07:32:13 +0000 |
commit | cf7c17e976fa95e8c90dc0e842ae1e855f56213b (patch) | |
tree | f31035f6aa1f341c70918ead6995c68068323c00 /libguile/feature.c | |
parent | ae6f9e24ce42f7157ffb391a6875a9a7d1e9e435 (diff) | |
download | guile-cf7c17e976fa95e8c90dc0e842ae1e855f56213b.tar.gz |
* (__scm.h, alist.c, eval.c, feature.c, gsubr.c, numbers.c,
options.c): Rename RECKLESS -> SCM_RECKLESS, CAUTIOUS ->
SCM_CAUTIOUS; this way, 1) there's only one version of each flag
to define (we used to have both RECKLESS and SCM_RECKLESS), and 2)
if we want to use them in a header file some day, we can. (Thanks
to Michael Livshin.)
Diffstat (limited to 'libguile/feature.c')
-rw-r--r-- | libguile/feature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index e59ab3399..627358111 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -94,7 +94,7 @@ void scm_init_feature() { scm_loc_features = SCM_CDRLOC (scm_sysintern ("*features*", SCM_EOL)); -#ifdef RECKLESS +#ifdef SCM_RECKLESS scm_add_feature("reckless"); #endif #ifndef _Windows |