• R/O
  • SSH

vim: コミット

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


コミットメタ情報

リビジョン76406c9cbbaa1ab6a8f6ca7f079c3ba8cf06e2ca (tree)
日時2008-01-01 00:42:13
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.1-176

変更サマリ

差分

diff -r b0dabd584b8f -r 76406c9cbbaa src/main.aap
--- a/src/main.aap Sun Dec 09 19:26:44 2007 +0000
+++ b/src/main.aap Mon Dec 31 15:42:13 2007 +0000
@@ -63,8 +63,9 @@
6363 @else:
6464 @ arch = "ppc"
6565 :print Building for $arch system
66+ config_args = `file2string("config.arg")`
6667 :sys CONFIG_STATUS=auto/config.status
67- ./configure.aap `file2string("config.arg")`
68+ ./configure.aap $config_args
6869 --with-mac-arch=$arch
6970 --cache-file=auto/config.cache
7071
@@ -440,11 +441,13 @@
440441 :print >> $target char_u *all_lflags = (char_u *)"$linkcmd";
441442 @if _no.get("COMPILEDBY"):
442443 who = $COMPILEDBY
443- where = ''
444+ where =
444445 @else:
445446 :syseval whoami | :eval re.sub("\n", "", stdin) | :assign who
446447
447448 :syseval hostname | :eval re.sub("\n", "", stdin) | :assign where
449+ @who = string.replace(who, '"', '\\"')
450+ @where = string.replace(where, '"', '\\"')
448451 :print >> $target char_u *compiled_user = (char_u *)"$who";
449452 :print >> $target char_u *compiled_sys = (char_u *)"$where";
450453
diff -r b0dabd584b8f -r 76406c9cbbaa src/version.c
--- a/src/version.c Sun Dec 09 19:26:44 2007 +0000
+++ b/src/version.c Mon Dec 31 15:42:13 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 176,
671+/**/
670672 175,
671673 /**/
672674 174,
旧リポジトリブラウザで表示