Patch 8.2.3653
Problem: Terminal ANSI colors may be wrong.
Solution: Initialize the color type. (closes #9198, closes #9197)
Files: src/terminal.c
*** ../vim-8.2.3652/src/terminal.c 2021-11-21 14:51:09.929191583 +0000
--- src/terminal.c 2021-11-23 12:03:32.040987950 +0000
***************
*** 4130,4135 ****
--- 4130,4136 ----
{
VTermColor color;
+ color.type = VTERM_COLOR_RGB;
color.red = (unsigned)(rgb[index] >> 16);
color.green = (unsigned)(rgb[index] >> 8) & 255;
color.blue = (unsigned)rgb[index] & 255;
*** ../vim-8.2.3652/src/version.c 2021-11-23 11:46:12.409848336 +0000
--- src/version.c 2021-11-23 12:06:13.217543580 +0000
***************
*** 759,760 ****
--- 759,762 ----
{ /* Add new patch number below this line */
+ /**/
+ 3653,
/**/
--
It is illegal for a driver to be blindfolded while operating a vehicle.
[real standing law in Alabama, United States of America]
/// Bram Moolenaar -- [email protected] -- 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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20211123120752.2C4A71C3DFC%40moolenaar.net.