diff options
| author | 2024-08-29 22:24:33 -0400 | |
|---|---|---|
| committer | 2024-08-29 22:24:33 -0400 | |
| commit | f160ecaae1532cb61e3158756b24193fb67c895e (patch) | |
| tree | 05bc9c2e02a174da3732ab9f104460c59f2b1eb6 /miniscm/miniscm.c | |
| parent | miniscm: add mutable string emulation and char->integer (diff) | |
add sets
Diffstat (limited to '')
| -rw-r--r-- | miniscm/miniscm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miniscm/miniscm.c b/miniscm/miniscm.c index e7597c9..6708a1a 100644 --- a/miniscm/miniscm.c +++ b/miniscm/miniscm.c @@ -79,7 +79,6 @@ * Define or undefine following symbols as you need. */ /* #define VERBOSE */ /* define this if you want verbose GC */ -#define VERBOSE #define AVOID_HACK_LOOP /* define this if your compiler is poor * enougth to complain "do { } while (0)" * construction. @@ -91,6 +90,8 @@ #define USE_MACRO /* undef this if you do not need macro */ #endif +#define USE_MACRO + #ifdef USE_QQUOTE /*-- * If your machine can't support "forward single quotation character" |
