Re: Patch 8.0.0182

2017-01-14 Fir de Conversatie h_east
Hi Bram,

Thanks for the correct fix!

--
Best regards,
Hirohito Higashi (a.k.a. h_east)

-- 
-- 
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.
For more options, visit https://groups.google.com/d/optout.


Patch 8.0.0182

2017-01-14 Fir de Conversatie Bram Moolenaar

Patch 8.0.0182
Problem:When 'cursorbind' and 'cursorline' are set, but 'cursorcolumn' is
not, then the cursor line highlighting is not updated. (Hirohito
Higashi)
Solution:   Call redraw_later() with NOT_VALID.
Files:  src/move.c


*** ../vim-8.0.0181/src/move.c  2017-01-14 14:54:23.950998102 +0100
--- src/move.c  2017-01-14 15:47:51.319280794 +0100
***
*** 2851,2857 
if (has_mbyte)
mb_adjust_cursor();
  # endif
!   redraw_later(VALID);
  
/* Only scroll when 'scrollbind' hasn't done this. */
if (!curwin->w_p_scb)
--- 2851,2857 
if (has_mbyte)
mb_adjust_cursor();
  # endif
!   redraw_later(curwin->w_p_cul ? NOT_VALID : VALID);
  
/* Only scroll when 'scrollbind' hasn't done this. */
if (!curwin->w_p_scb)
*** ../vim-8.0.0181/src/version.c   2017-01-14 14:54:23.950998102 +0100
--- src/version.c   2017-01-14 15:51:53.017795521 +0100
***
*** 766,767 
--- 766,769 
  {   /* Add new patch number below this line */
+ /**/
+ 182,
  /**/

-- 
GALAHAD:   Camelot ...
LAUNCELOT: Camelot ...
GAWAIN:It's only a model.
 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- b...@moolenaar.net -- 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 vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.