Allow non-width multicell code to fill multiple cells using native width algo

This commit is contained in:
Kovid Goyal
2024-12-02 20:52:11 +05:30
parent 844d538e40
commit b1c80d212f
10 changed files with 302 additions and 163 deletions

View File

@@ -140,7 +140,7 @@ def generate(
case PAYLOAD: {
sz = parser_buf_pos - pos;
payload_start = pos;
g.payload_sz = MAX(BUF_EXTRA, sz);
g.payload_sz = sz;
pos = parser_buf_pos;
} break;
'''