Re-enable string quoting within records

This commit is contained in:
gingerBill
2022-06-11 15:16:17 +01:00
parent f33228fd6e
commit 8b3b659433

View File

@@ -952,9 +952,9 @@ fmt_string :: proc(fi: ^Info, s: string, verb: rune) {
if ol, ok := fi.optional_len.?; ok {
s = s[:min(len(s), ol)]
}
// if !fi.in_bad && fi.record_level >= 0 && verb == 'v' {
// verb = 'q'
// }
if !fi.in_bad && fi.record_level >= 0 && verb == 'v' {
verb = 'q'
}
switch verb {
case 's', 'v':