]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-086 v7.0.086
authorBram Moolenaar <Bram@vim.org>
Tue, 5 Sep 2006 13:37:47 +0000 (13:37 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 5 Sep 2006 13:37:47 +0000 (13:37 +0000)
src/quickfix.c
src/version.c

index 2e87373436f220fd4444f70d88fbc49119393a1e..6c102d953078ba9f43aab3c2d57de8ac7fcaeb9e 100644 (file)
@@ -3426,8 +3426,10 @@ get_errorlist(wp, list)
          || dict_add_nr_str(dict, "col",   (long)qfp->qf_col, NULL) == FAIL
          || dict_add_nr_str(dict, "vcol",  (long)qfp->qf_viscol, NULL) == FAIL
          || dict_add_nr_str(dict, "nr",    (long)qfp->qf_nr, NULL) == FAIL
-         || dict_add_nr_str(dict, "pattern",  0L, qfp->qf_pattern) == FAIL
-         || dict_add_nr_str(dict, "text",  0L, qfp->qf_text) == FAIL
+         || dict_add_nr_str(dict, "pattern",  0L,
+            qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL
+         || dict_add_nr_str(dict, "text",  0L,
+                  qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL
          || dict_add_nr_str(dict, "type",  0L, buf) == FAIL
          || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL)
            return FAIL;
index a05edb1e0d51f22af44c0387393bbf1f9ea0f6d2..21eb8707cb9acbbddddf1c6536f8dfb5e9d602f9 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    86,
 /**/
     85,
 /**/