Skip to content

Commit 5a82227

Browse files
committed
Update how to write patches
The "Vim development" page doesn't explain the detail now. Don't mention it at the top of the page. (A link to the page is still kept at the bottom of the page.) Change Make_dos.mak to Make_mvc.mak to follow the latest source code. Mention about Make_ming.mak.
1 parent b360755 commit 5a82227

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/how_to_write_patches.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ title: パッチの書き方
88
Vimはバージョン管理ツールとして Git を採用しているおかげで、簡単にパッチを作成し管理することができます。
99
ここではパッチの作成方法について学びましょう。
1010

11-
最近、www.vim.org のページに[Vim development](http://www.vim.org/develop.php)という記事ができました。
12-
こちらは英語ですが、手順がよくまとまっているため、英語を苦にしない人はこちらを参照するとよいでしょう。
13-
1411
## 準備
1512

1613
まず前提条件として、あなたのPCではコンパイル環境が整備されており、[Git](https://git-scm.com/)が使える状態になっているとします。
@@ -77,16 +74,18 @@ Unix 系の場合:
7774
Windows の場合 (MSVC):
7875

7976
全テストを実行
80-
> nmake -f Make_dos.mak
77+
> nmake -f Make_mvc.mak
8178

8279
特定のファイルのテストを実行
83-
> nmake -f Make_dos.mak test_channel
80+
> nmake -f Make_mvc.mak test_channel
8481

8582
特定のファイルの特定名称のテストを実行 (部分一致)
86-
> nmake -f Make_dos.mak test_channel TEST_FILTER=Test_communicate
83+
> nmake -f Make_mvc.mak test_channel TEST_FILTER=Test_communicate
8784

8885
GUI で実行
89-
> nmake -f Make_dos.mak VIMPROG=..\gvim
86+
> nmake -f Make_mvc.mak VIMPROG=..\gvim
87+
88+
MinGW を使う場合は `Make_mvc.mak` の代わりに `Make_ming.mak` を指定します。
9089

9190
## 送信
9291

0 commit comments

Comments
 (0)