diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 19:13:12 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 19:13:12 -0400 |
| commit | dd758d0a05979a3c4a4c2eee3a2a26622f0e7b45 (patch) | |
| tree | e171166c3d14f007850697b8a6c5b61854bfd66b /src | |
| parent | ab3da1f73ad1ad99ea91dc886e06c7285e346b4b (diff) | |
Fix default `pretty` visualization of codegen
Diffstat (limited to 'src')
| -rw-r--r-- | src/tomo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ int main(int argc, char *argv[]) #endif if (show_codegen.length > 0 && Text$equal_values(show_codegen, Text("pretty"))) - show_codegen = Text("sed '/^#line/d;/^$/d' | indent -o /dev/stdout | bat -l c -P"); + show_codegen = Text("{ sed '/^#line/d;/^$/d' | indent -o /dev/stdout | bat -l c -P; }"); for (int64_t i = 0; i < uninstall.length; i++) { Text_t *u = (Text_t*)(uninstall.data + i*uninstall.stride); |
