Fix incorrect Sync terminfo entry

This commit is contained in:
Kovid Goyal
2021-07-03 09:18:33 +05:30
parent c6938c9039
commit 610a09817f
4 changed files with 3 additions and 3 deletions

View File

@@ -1129,7 +1129,7 @@ START_ALLOW_CASE_RANGE
END_ALLOW_CASE_RANGE
if (screen->parser_buf_pos > 0 && screen->parser_buf[screen->parser_buf_pos-1] == ESC) {
if (ch == '\\') { screen->parser_buf_pos--; return true; }
REPORT_ERROR("DCS sequence contained non-printable character: 0x%x ignoring the sequence", ESC);
REPORT_ERROR("DCS sequence contained ESC without trailing \\ ignoring the sequence");
SET_STATE(ESC); return false;
}
if (screen->parser_buf_pos >= PARSER_BUF_SZ - 1) {