diff options
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2330,7 +2330,7 @@ tputc(Rune u) | |||
2330 | if (term.esc&ESC_DCS && strescseq.len == 0 && u == 'q') | 2330 | if (term.esc&ESC_DCS && strescseq.len == 0 && u == 'q') |
2331 | term.mode |= MODE_SIXEL; | 2331 | term.mode |= MODE_SIXEL; |
2332 | 2332 | ||
2333 | if (strescseq.len+len >= sizeof(strescseq.buf)-1) { | 2333 | if (strescseq.len+len >= sizeof(strescseq.buf)) { |
2334 | /* | 2334 | /* |
2335 | * Here is a bug in terminals. If the user never sends | 2335 | * Here is a bug in terminals. If the user never sends |
2336 | * some code to stop the str or esc command, then st | 2336 | * some code to stop the str or esc command, then st |