]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.133 v7.4.133
authorBram Moolenaar <Bram@vim.org>
Mon, 6 Jan 2014 05:19:11 +0000 (06:19 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 6 Jan 2014 05:19:11 +0000 (06:19 +0100)
Problem:    Clang warns for using NUL.
Solution:   Change NUL to NULL. (Dominique Pelle)

src/eval.c
src/misc2.c
src/version.c

index 1637e6d09e5788c8c5becc5ca54574311fcf01b2..8a62fa8fa2963e6b0f99fec00b178c5fe10994ca 100644 (file)
@@ -14141,8 +14141,8 @@ f_matcharg(argvars, rettv)
            }
            else
            {
-               list_append_string(rettv->vval.v_list, NUL, -1);
-               list_append_string(rettv->vval.v_list, NUL, -1);
+               list_append_string(rettv->vval.v_list, NULL, -1);
+               list_append_string(rettv->vval.v_list, NULL, -1);
            }
        }
 #endif
index 650620318d023119f7d649f5eb59d399387b0912..a9d7a82b0c49f35d8be312409c6b45bbce8102c9 100644 (file)
@@ -4695,8 +4695,8 @@ vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
        else
        {
            char_u *p =  gettail(search_ctx->ffsc_fix_path);
-           char_u *wc_path = NUL;
-           char_u *temp = NUL;
+           char_u *wc_path = NULL;
+           char_u *temp = NULL;
            int    len = 0;
 
            if (p > search_ctx->ffsc_fix_path)
index cf4f1ce1808e376799490620dfa4017f61f8d771..1ca8f9f305c8397a7bd2db7ae23f0ed4fab4e74a 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    133,
 /**/
     132,
 /**/