• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisioncbe70f2e756d80015f6f0057e13a882ee7567276 (tree)
Time2008-02-20 22:16:29
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-259

Change Summary

Incremental Difference

diff -r fc42d9cc7ad0 -r cbe70f2e756d src/screen.c
--- a/src/screen.c Wed Feb 20 12:43:01 2008 +0000
+++ b/src/screen.c Wed Feb 20 13:16:29 2008 +0000
@@ -8045,9 +8045,13 @@
80458045 windgoto(W_WINROW(curwin) + curwin->w_wrow,
80468046 W_WINCOL(curwin) + (
80478047 #ifdef FEAT_RIGHTLEFT
8048+ /* With 'rightleft' set and the cursor on a double-wide
8049+ * character, position it on the leftmost column. */
80488050 curwin->w_p_rl ? ((int)W_WIDTH(curwin) - curwin->w_wcol - (
80498051 # ifdef FEAT_MBYTE
8050- has_mbyte ? (*mb_ptr2cells)(ml_get_cursor()) :
8052+ (has_mbyte
8053+ && (*mb_ptr2cells)(ml_get_cursor()) == 2
8054+ && vim_isprintc(gchar_cursor())) ? 2 :
80518055 # endif
80528056 1)) :
80538057 #endif
diff -r fc42d9cc7ad0 -r cbe70f2e756d src/version.c
--- a/src/version.c Wed Feb 20 12:43:01 2008 +0000
+++ b/src/version.c Wed Feb 20 13:16:29 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 259,
671+/**/
670672 258,
671673 /**/
672674 257,
Show on old repository browser