• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

K.Takata's patch queue for Vim


Commit MetaInfo

Revisiona95bc4ad19f50b1f638c6009de4aa6ea54eb56db (tree)
Zeit2022-02-02 11:40:20
AutorK.Takata <kentkt@csc....>
CommiterK.Takata

Log Message

Update suppress warnings patch

Ändern Zusammenfassung

Diff

diff -r cb8f5a13c4a2 -r a95bc4ad19f5 suppress-warnings.patch
--- a/suppress-warnings.patch Tue Feb 01 11:24:33 2022 +0900
+++ b/suppress-warnings.patch Wed Feb 02 11:40:20 2022 +0900
@@ -1,5 +1,5 @@
11 # HG changeset patch
2-# Parent 0bea874bd35389e108185bf6a149d39c39775f8a
2+# Parent 29274fb6ba32ad8e3264e01b5a32c3c870cc9199
33
44 diff --git a/src/cmdexpand.c b/src/cmdexpand.c
55 --- a/src/cmdexpand.c
@@ -70,7 +70,7 @@
7070 diff --git a/src/getchar.c b/src/getchar.c
7171 --- a/src/getchar.c
7272 +++ b/src/getchar.c
73-@@ -1780,16 +1780,16 @@ vgetc(void)
73+@@ -1768,16 +1768,16 @@ vgetc(void)
7474 c == K_TEAROFF)
7575 {
7676 char_u name[200];
@@ -117,10 +117,19 @@
117117 return WAIT_OBJECT_0;
118118 return WaitForSingleObject(hHandle, dwMilliseconds);
119119 }
120+@@ -725,7 +725,7 @@ dyn_libintl_init(void)
121+ for (i = 0; libintl_entry[i].name != NULL
122+ && libintl_entry[i].ptr != NULL; ++i)
123+ {
124+- if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
125++ if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
126+ libintl_entry[i].name)) == NULL)
127+ {
128+ dyn_libintl_end();
120129 diff --git a/src/version.c b/src/version.c
121130 --- a/src/version.c
122131 +++ b/src/version.c
123-@@ -9412,7 +9412,7 @@ list_in_columns(char_u **items, int size
132+@@ -9460,7 +9460,7 @@ list_in_columns(char_u **items, int size
124133 // The rightmost column doesn't need a separator.
125134 // Sacrifice it to fit in one more column if possible.
126135 ncol = (int) (Columns + 1) / width;