Skip to content
Snippets Groups Projects
Commit 561f9db8 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.1-259

parent 5bcbd537
No related merge requests found
......@@ -8045,9 +8045,13 @@ setcursor()
windgoto(W_WINROW(curwin) + curwin->w_wrow,
W_WINCOL(curwin) + (
#ifdef FEAT_RIGHTLEFT
/* With 'rightleft' set and the cursor on a double-wide
* character, position it on the leftmost column. */
curwin->w_p_rl ? ((int)W_WIDTH(curwin) - curwin->w_wcol - (
# ifdef FEAT_MBYTE
has_mbyte ? (*mb_ptr2cells)(ml_get_cursor()) :
(has_mbyte
&& (*mb_ptr2cells)(ml_get_cursor()) == 2
&& vim_isprintc(gchar_cursor())) ? 2 :
# endif
1)) :
#endif
......
......@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
259,
/**/
258,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment