diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-12-21 15:57:21 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-12-21 15:57:21 -0500 |
| commit | 13c430fde1388703aa002fdb203548801082d4e3 (patch) | |
| tree | 236718203fa84bcf78b755bf8ec3b69a1da716ad /src/compile/files.c | |
| parent | 86a08a38a8a60b6a0de0da62a5d3fa843f6db71f (diff) | |
| parent | 434ffd71c9a7eebd46ec0cba1d97b0827b874901 (diff) | |
Merge branch 'dev'
Diffstat (limited to 'src/compile/files.c')
| -rw-r--r-- | src/compile/files.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compile/files.c b/src/compile/files.c index 27c2e041..555f848c 100644 --- a/src/compile/files.c +++ b/src/compile/files.c @@ -194,8 +194,8 @@ Text_t compile_file(env_t *env, ast_t *ast) { const char *name = file_base_name(ast->file->filename); return Texts(env->do_source_mapping ? Texts("#line 1 ", quoted_str(ast->file->filename), "\n") : EMPTY_TEXT, - "#define __SOURCE_FILE__ ", quoted_str(ast->file->filename), "\n", - "#include <tomo@" TOMO_VERSION "/tomo.h>\n" + "#define __SOURCE_FILE__ ", quoted_str(ast->file->filename), "\n", "#include <tomo@", TOMO_VERSION, + "/tomo.h>\n" "#include \"", name, ".tm.h\"\n\n", includes, env->code->local_typedefs, "\n", env->code->lambdas, "\n", env->code->staticdefs, "\n", top_level_code, "public void ", |
