• R/O
  • SSH

vim: コミット

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


コミットメタ情報

リビジョン871231399cf547112a50a9f93497d40d01b66d51 (tree)
日時2007-09-25 21:20:19
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.1-118

変更サマリ

差分

diff -r 004eb98eb3c3 -r 871231399cf5 src/ops.c
--- a/src/ops.c Tue Sep 25 10:51:12 2007 +0000
+++ b/src/ops.c Tue Sep 25 12:20:19 2007 +0000
@@ -2605,7 +2605,7 @@
26052605 /* Auto-indenting may have changed the indent. If the cursor was past
26062606 * the indent, exclude that indent change from the inserted text. */
26072607 firstline = ml_get(oap->start.lnum);
2608- if (bd.textcol > pre_indent)
2608+ if (bd.textcol > (colnr_T)pre_indent)
26092609 {
26102610 long new_indent = (long)(skipwhite(firstline) - firstline);
26112611
diff -r 004eb98eb3c3 -r 871231399cf5 src/version.c
--- a/src/version.c Tue Sep 25 10:51:12 2007 +0000
+++ b/src/version.c Tue Sep 25 12:20:19 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 118,
671+/**/
670672 117,
671673 /**/
672674 116,
旧リポジトリブラウザで表示