Skip to content

Commit fe93fe6

Browse files
committed
Merge remote-tracking branch 'vim/master' into kaoriya
2 parents 436adca + dffcea4 commit fe93fe6

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
@@ -14157,8 +14157,8 @@ f_matcharg(argvars, rettv)
1415714157
}
1415814158
else
1415914159
{
14160-
list_append_string(rettv->vval.v_list, NUL, -1);
14161-
list_append_string(rettv->vval.v_list, NUL, -1);
14160+
list_append_string(rettv->vval.v_list, NULL, -1);
14161+
list_append_string(rettv->vval.v_list, NULL, -1);
1416214162
}
1416314163
}
1416414164
#endif

src/misc2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4695,8 +4695,8 @@ vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
46954695
else
46964696
{
46974697
char_u *p = gettail(search_ctx->ffsc_fix_path);
4698-
char_u *wc_path = NUL;
4699-
char_u *temp = NUL;
4698+
char_u *wc_path = NULL;
4699+
char_u *temp = NULL;
47004700
int len = 0;
47014701

47024702
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
@@ -756,6 +756,10 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
133,
761+
/**/
762+
132,
759763
/**/
760764
131,
761765
/**/

0 commit comments

Comments
 (0)