summaryrefslogtreecommitdiffstats
path: root/gc.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-06-17 20:22:24 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-06-17 20:22:24 -0700
commit09413faa188070e9f484099f30f69eed31ab82e2 (patch)
tree301c280d9590a0fb587635c9a5e91d27ff3a788f /gc.h
parentc43521c50efad928ff0b41724b967b96e6cb274f (diff)
downloadtxr-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.h b/gc.h
index 27c534f9..2bc51fe6 100644
--- a/gc.h
+++ b/gc.h
@@ -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