• R/O
  • SSH

vim: コミット

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


コミットメタ情報

リビジョンbd7e26d05a3fc8e010566ad8f8aea9c31ddf55c8 (tree)
日時2006-06-24 00:59:09
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.0-034

変更サマリ

差分

diff -r 5e168526af25 -r bd7e26d05a3f src/edit.c
--- a/src/edit.c Fri Jun 23 15:25:34 2006 +0000
+++ b/src/edit.c Fri Jun 23 15:59:09 2006 +0000
@@ -3020,9 +3020,6 @@
30203020 if ((int)(p - line) - (int)compl_col <= 0)
30213021 return K_BS;
30223022
3023- /* For redo we need to repeat this backspace. */
3024- AppendCharToRedobuff(K_BS);
3025-
30263023 /* Deleted more than what was used to find matches or didn't finish
30273024 * finding all matches: need to look for matches all over again. */
30283025 if (curwin->w_cursor.col <= compl_col + compl_length
@@ -3122,10 +3119,6 @@
31223119 #endif
31233120 ins_char(c);
31243121
3125- /* For redo we need to count this character so that the number of
3126- * backspaces is correct. */
3127- AppendCharToRedobuff(c);
3128-
31293122 /* If we didn't complete finding matches we must search again. */
31303123 if (compl_was_interrupted)
31313124 ins_compl_restart();
diff -r 5e168526af25 -r bd7e26d05a3f src/version.c
--- a/src/version.c Fri Jun 23 15:25:34 2006 +0000
+++ b/src/version.c Fri Jun 23 15:59:09 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 34,
671+/**/
670672 33,
671673 /**/
672674 32,
旧リポジトリブラウザで表示