Patch 7.4.679
Problem: Color values greater than 255 cause problems on MS-Windows.
Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
Files: src/os_win32.c
*** ../vim-7.4.678/src/os_win32.c 2015-03-21 22:18:37.808371766 +0100
--- src/os_win32.c 2015-03-24 17:10:04.870555251 +0100
***************
*** 5262,5268 ****
static void
textattr(WORD wAttr)
{
! g_attrCurrent = wAttr;
SetConsoleTextAttribute(g_hConOut, wAttr);
}
--- 5262,5268 ----
static void
textattr(WORD wAttr)
{
! g_attrCurrent = wAttr & 0xff;
SetConsoleTextAttribute(g_hConOut, wAttr);
}
***************
*** 5271,5277 ****
static void
textcolor(WORD wAttr)
{
! g_attrCurrent = (g_attrCurrent & 0xf0) + wAttr;
SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
}
--- 5271,5277 ----
static void
textcolor(WORD wAttr)
{
! g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
}
***************
*** 5280,5286 ****
static void
textbackground(WORD wAttr)
{
! g_attrCurrent = (g_attrCurrent & 0x0f) + (wAttr << 4);
SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
}
--- 5280,5286 ----
static void
textbackground(WORD wAttr)
{
! g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
}
*** ../vim-7.4.678/src/version.c 2015-03-24 16:48:16.973934896 +0100
--- src/version.c 2015-03-24 17:09:45.470788914 +0100
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 679,
/**/
--
ARTHUR: Did you say shrubberies?
ROGER: Yes. Shrubberies are my trade. I am a shrubber. My name is Roger
the Shrubber. I arrange, design, and sell shrubberies.
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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].
For more options, visit https://groups.google.com/d/optout.