Skip to content

Commit 0cd61e2

Browse files
committed
Merge branch 'kaoriya'
2 parents a744da3 + fe93fe6 commit 0cd61e2

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.hgtags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2854,3 +2854,5 @@ b14554844756422a39c72e62b8c2391c2d5a2e17 v7-4-126
28542854
1e28c0fad344549665c60c62374e6f511e5aec76 v7-4-129
28552855
cf722c09236098ae585840d62eca68dbf8065247 v7-4-130
28562856
4b23119cb58473ab70cf1a1204d4d3fad83881ec v7-4-131
2857+
1b09d6792520cbe1c94c20f6c833ad57316e75bb v7-4-132
2858+
6a28a9cf51537b81da7e9ec3f70fea55e393b345 v7-4-133

src/eval.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14177,8 +14177,8 @@ f_matcharg(argvars, rettv)
1417714177
}
1417814178
else
1417914179
{
14180-
list_append_string(rettv->vval.v_list, NUL, -1);
14181-
list_append_string(rettv->vval.v_list, NUL, -1);
14180+
list_append_string(rettv->vval.v_list, NULL, -1);
14181+
list_append_string(rettv->vval.v_list, NULL, -1);
1418214182
}
1418314183
}
1418414184
#endif

src/misc2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4701,8 +4701,8 @@ vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
47014701
else
47024702
{
47034703
char_u *p = gettail(search_ctx->ffsc_fix_path);
4704-
char_u *wc_path = NUL;
4705-
char_u *temp = NUL;
4704+
char_u *wc_path = NULL;
4705+
char_u *temp = NULL;
47064706
int len = 0;
47074707

47084708
if (p > search_ctx->ffsc_fix_path)

src/os_win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3831,8 +3831,8 @@ mch_set_winsize_now(void)
38313831
static BOOL
38323832
vim_create_process(
38333833
char *cmd,
3834-
DWORD flags,
38353834
BOOL inherit_handles,
3835+
DWORD flags,
38363836
STARTUPINFO *si,
38373837
PROCESS_INFORMATION *pi)
38383838
{

src/version.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,10 @@ static char *(features[]) =
776776

777777
static int included_patches[] =
778778
{ /* Add new patch number below this line */
779+
/**/
780+
133,
781+
/**/
782+
132,
779783
/**/
780784
131,
781785
/**/

0 commit comments

Comments
 (0)