Patch 9.0.1344 (after 9.0.1343) Problem: Check for OSC escape sequence doesn't work. Solution: Fix typo in index. Files: src/term.c
*** ../vim-9.0.1343/src/term.c 2023-02-23 12:46:01.491189140 +0000 --- src/term.c 2023-02-23 13:52:20.455313050 +0000 *************** *** 5716,5722 **** if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 && (is_4digit ! || (tp[j + 9] == '/' && tp[i + 12] == '/'))) { char_u *tp_r = tp + j + 7; char_u *tp_g = tp + j + (is_4digit ? 12 : 10); --- 5716,5722 ---- if (i - j >= 15 && STRNCMP(tp + j + 3, "rgb:", 4) == 0 && (is_4digit ! || (tp[j + 9] == '/' && tp[j + 12] == '/'))) { char_u *tp_r = tp + j + 7; char_u *tp_g = tp + j + (is_4digit ? 12 : 10); *** ../vim-9.0.1343/src/version.c 2023-02-23 12:46:01.491189140 +0000 --- src/version.c 2023-02-23 13:53:11.163262096 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 1344, /**/ -- hundred-and-one symptoms of being an internet addict: 170. You introduce your wife as "my_l...@home.wife" and refer to your children as "forked processes." /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/20230223135433.CE83C1C0857%40moolenaar.net.