Use fi.space instead of fi.hash

This commit is contained in:
Tarık B.
2026-03-10 00:05:46 +01:00
parent 8f101af8f8
commit e119b9883f

View File

@@ -2592,7 +2592,7 @@ fmt_named_buitlin_custom_formatters :: proc(fi: ^Info, v: any, verb: rune, info:
prec = 6
buf[w] = 'm'
}
if fi.hash {
if fi.space {
w -= 1
buf[w] = ' '
}
@@ -2601,7 +2601,7 @@ fmt_named_buitlin_custom_formatters :: proc(fi: ^Info, v: any, verb: rune, info:
} else {
w -= 1
buf[w] = 's'
if fi.hash {
if fi.space {
w -= 1
buf[w] = ' '
}