• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revisiona5b3a7fb6a5a0f1857b8d0eec380aa7a0f780729 (tree)
Time2007-11-09 05:24:19
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-154

Change Summary

Incremental Difference

diff -r c7654c4db8fd -r a5b3a7fb6a5a src/screen.c
--- a/src/screen.c Thu Nov 08 19:49:02 2007 +0000
+++ b/src/screen.c Thu Nov 08 20:24:19 2007 +0000
@@ -4315,7 +4315,7 @@
43154315 long prevcol = (long)(ptr - line) - (c == NUL);
43164316
43174317 /* we're not really at that column when skipping some text */
4318- if ((wp->w_p_wrap ? wp->w_skipcol : wp->w_leftcol) > prevcol)
4318+ if ((long)(wp->w_p_wrap ? wp->w_skipcol : wp->w_leftcol) > prevcol)
43194319 ++prevcol;
43204320 #endif
43214321
diff -r c7654c4db8fd -r a5b3a7fb6a5a src/version.c
--- a/src/version.c Thu Nov 08 19:49:02 2007 +0000
+++ b/src/version.c Thu Nov 08 20:24:19 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 154,
671+/**/
670672 153,
671673 /**/
672674 152,
Show on old repository browser