diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 14:36:35 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 14:36:35 -0500 |
| commit | 08d1a6b971e00055b5a6085c50543059b87290bc (patch) | |
| tree | 5dae7d9e24a0bcd92d31949f098ca3974d24332c | |
| parent | c9cd66745058bd8892bf3b17a3ffd625e9066212 (diff) | |
Simplify table code
| -rw-r--r-- | builtins/table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/table.c b/builtins/table.c index 94af0499..bff09af9 100644 --- a/builtins/table.c +++ b/builtins/table.c @@ -529,7 +529,7 @@ public CORD Table_as_str(const table_t *t, bool colorize, const TypeInfo *type) } if (t->default_value) { - c = CORD_cat(c, t->fallback ? "; default=" : "; default="); + c = CORD_cat(c, "; default="); c = CORD_cat(c, generic_as_str(t->default_value, colorize, table.value)); } |
