summaryrefslogtreecommitdiff
path: root/libguile/options.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1998-10-14 07:32:13 +0000
committerJim Blandy <jimb@red-bean.com>1998-10-14 07:32:13 +0000
commitcf7c17e976fa95e8c90dc0e842ae1e855f56213b (patch)
treef31035f6aa1f341c70918ead6995c68068323c00 /libguile/options.c
parentae6f9e24ce42f7157ffb391a6875a9a7d1e9e435 (diff)
downloadguile-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/options.c')
-rw-r--r--libguile/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/options.c b/libguile/options.c
index ad3783198..9f825e4f4 100644
--- a/libguile/options.c
+++ b/libguile/options.c
@@ -188,7 +188,7 @@ scm_options (new_mode, options, n, s)
flags[i] = SCM_CAR (new_mode);
goto cont;
}
-#ifndef RECKLESS
+#ifndef SCM_RECKLESS
scm_must_free ((char *) flags);
scm_wta (SCM_CAR (new_mode), "Unknown mode flag", s);
#endif