aboutsummaryrefslogtreecommitdiff
path: root/interpreter/code.c
diff options
context:
space:
mode:
authorCamil Staps2016-11-08 09:37:13 +0100
committerCamil Staps2016-11-08 09:37:13 +0100
commit95f715a61017a48584ac9dc953bfa0ab92aba13f (patch)
treee069cc0cd9334333419fd82f8ef12f169d2d5e6f /interpreter/code.c
parentexamples (diff)
Remove leading underscore from _FUSPEL_DEBUG and _FUSPEL_CLI
Diffstat (limited to 'interpreter/code.c')
-rw-r--r--interpreter/code.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter/code.c b/interpreter/code.c
index b20b2ba..88f58b7 100644
--- a/interpreter/code.c
+++ b/interpreter/code.c
@@ -139,7 +139,7 @@ unsigned char code_find(char *name, void **function) {
return 0;
}
-#ifdef _FUSPEL_DEBUG
+#ifdef FUSPEL_DEBUG
char *code_find_name(void *f) {
struct code_mapping *entry = code_table;
while (entry) {