Skip to content

Commit 4d9d4ac

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents bbfcd01 + 7756e74 commit 4d9d4ac

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/ex_cmds.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -6908,7 +6908,7 @@ fix_help_buffer(void)
69086908
continue;
69096909
e1 = vim_strrchr(t1, '.');
69106910
e2 = vim_strrchr(gettail(f2), '.');
6911-
if (e1 == NUL || e2 == NUL)
6911+
if (e1 == NULL || e2 == NULL)
69126912
continue;
69136913
if (fnamecmp(e1, ".txt") != 0
69146914
&& fnamecmp(e1, fname + 4) != 0)
@@ -8205,7 +8205,7 @@ set_context_in_sign_cmd(expand_T *xp, char_u *arg)
82058205
/* :sign define {name} {args}... {last}=
82068206
* | |
82078207
* last p */
8208-
if (p == NUL)
8208+
if (p == NULL)
82098209
{
82108210
/* Expand last argument name (before equal sign). */
82118211
xp->xp_pattern = last;

src/json.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ json_decode_item(js_read_T *reader, typval_T *res, int options)
861861
break;
862862
}
863863

864-
if (res != NUL)
864+
if (res != NULL)
865865
{
866866
res->v_type = VAR_SPECIAL;
867867
res->vval.v_number = VVAL_NONE;

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,8 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
46,
782784
/**/
783785
45,
784786
/**/

0 commit comments

Comments
 (0)