aboutsummaryrefslogtreecommitdiff
path: root/src/compile/functions.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-10-12 14:19:59 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-10-12 14:19:59 -0400
commit6e5fb2ac4e5b780c74f310446ddd80d571170b0d (patch)
tree587241a69065c01b890d7ae70a37af08bba646b1 /src/compile/functions.c
parent3cd3b20f58e9d2c6463d503be09e5d4cfaadee6c (diff)
More code cleanups
Diffstat (limited to 'src/compile/functions.c')
-rw-r--r--src/compile/functions.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compile/functions.c b/src/compile/functions.c
index 757df073..4a2812ba 100644
--- a/src/compile/functions.c
+++ b/src/compile/functions.c
@@ -784,9 +784,6 @@ Text_t compile_function(env_t *env, Text_t name_code, ast_t *ast, Text_t *static
}
}
- Text_t qualified_name = Text$from_str(function_name);
- if (env->namespace && env->namespace->parent && env->namespace->name)
- qualified_name = Texts(env->namespace->name, ".", qualified_name);
return definition;
}