Problem: Warning from 64 bit compiler.
Solution: Add type cast. (Mike Williams)
if (VIsual_mode == 'V')
{
VIsual.col = 0;
- curwin->w_cursor.col = STRLEN(ptr);
+ curwin->w_cursor.col = (colnr_T)STRLEN(ptr);
}
- else if (VIsual_mode == Ctrl_V &&
- VIsual.col > curwin->w_cursor.col)
+ else if (VIsual_mode == Ctrl_V && VIsual.col > curwin->w_cursor.col)
{
t = VIsual;
VIsual.col = curwin->w_cursor.col;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 796,
/**/
795,
/**/