diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-06-17 20:22:24 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-06-17 20:22:24 -0700 |
commit | 09413faa188070e9f484099f30f69eed31ab82e2 (patch) | |
tree | 301c280d9590a0fb587635c9a5e91d27ff3a788f /gc.h | |
parent | c43521c50efad928ff0b41724b967b96e6cb274f (diff) | |
download | txr-09413faa188070e9f484099f30f69eed31ab82e2.tar.gz txr-09413faa188070e9f484099f30f69eed31ab82e2.tar.bz2 txr-09413faa188070e9f484099f30f69eed31ab82e2.zip |
Rename EXTRA_DEBUGGING to CONFIG_EXTRA_DEBUGGING.
* configure: Generate #define CONFIG_EXTRA_DEBUGGING 1 in
config.h header, rather than EXTRA_DEBUGGING.
* gc.c, gc.h, hash.c: Change references to EXTRA_DEBUGGING
preprocessor symbol to CONFIG_EXTRA_DEBUGGING.
Diffstat (limited to 'gc.h')
-rw-r--r-- | gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ void gc_free_all(void); extern int gc_enabled; extern val **gc_prot_top; -#if EXTRA_DEBUGGING +#if CONFIG_EXTRA_DEBUGGING extern val break_obj; #endif |