• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revision215d6b2a1816a5eaf5f5d2cb7cb1b22d24adbdab (tree)
Time2007-11-21 02:04:29
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-159

Change Summary

Incremental Difference

diff -r 69bcc0c891d7 -r 215d6b2a1816 src/ex_cmds.c
--- a/src/ex_cmds.c Tue Nov 20 16:22:16 2007 +0000
+++ b/src/ex_cmds.c Tue Nov 20 17:04:29 2007 +0000
@@ -4885,7 +4885,8 @@
48854885 ++line2;
48864886 /* move the cursor to the new line, like Vi */
48874887 ++curwin->w_cursor.lnum;
4888- STRCPY(new_start, p1 + 1); /* copy the rest */
4888+ /* copy the rest */
4889+ mch_memmove(new_start, p1 + 1, STRLEN(p1 + 1) + 1);
48894890 p1 = new_start - 1;
48904891 }
48914892 }
diff -r 69bcc0c891d7 -r 215d6b2a1816 src/version.c
--- a/src/version.c Tue Nov 20 16:22:16 2007 +0000
+++ b/src/version.c Tue Nov 20 17:04:29 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 159,
671+/**/
670672 158,
671673 /**/
672674 157,
Show on old repository browser