• R/O
  • SSH

vim: コミット

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


コミットメタ情報

リビジョン93ffa40b532038ad22824047b15c6edec3b6af5a (tree)
日時2007-11-11 06:51:15
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.1-155

変更サマリ

差分

diff -r a5b3a7fb6a5a -r 93ffa40b5320 src/undo.c
--- a/src/undo.c Thu Nov 08 20:24:19 2007 +0000
+++ b/src/undo.c Sat Nov 10 21:51:15 2007 +0000
@@ -1678,6 +1678,14 @@
16781678 {
16791679 u_header_T *tofree, *next;
16801680
1681+ /* If this is the top branch we may need to use u_freeheader() to update
1682+ * all the pointers. */
1683+ if (uhp == buf->b_u_oldhead)
1684+ {
1685+ u_freeheader(buf, uhp, uhpp);
1686+ return;
1687+ }
1688+
16811689 if (uhp->uh_alt_prev != NULL)
16821690 uhp->uh_alt_prev->uh_alt_next = NULL;
16831691
diff -r a5b3a7fb6a5a -r 93ffa40b5320 src/version.c
--- a/src/version.c Thu Nov 08 20:24:19 2007 +0000
+++ b/src/version.c Sat Nov 10 21:51:15 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 155,
671+/**/
670672 154,
671673 /**/
672674 153,
旧リポジトリブラウザで表示