Merge pull request #4229 from jbradaric/vim-7.4.847

vim-patch:7.4.847
This commit is contained in:
Justin M. Keyes 2016-02-17 04:04:27 -05:00
commit 9198b06ea6
2 changed files with 7 additions and 5 deletions

View File

@ -3144,10 +3144,12 @@ current_block (
}
if (VIsual_active) {
if (*p_sel == 'e')
++curwin->w_cursor.col;
if (sol && gchar_cursor() != NUL)
inc(&curwin->w_cursor); /* include the line break */
if (*p_sel == 'e') {
inc(&curwin->w_cursor);
}
if (sol && gchar_cursor() != NUL) {
inc(&curwin->w_cursor); // include the line break
}
VIsual = start_pos;
VIsual_mode = 'v';
redraw_curbuf_later(INVERTED); /* update the inversion */

View File

@ -441,7 +441,7 @@ static int included_patches[] = {
// 850 NA
849,
848,
// 847,
847,
// 846 NA
// 845,
844,