]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-148 v7.0.148
authorBram Moolenaar <Bram@vim.org>
Tue, 24 Oct 2006 11:49:25 +0000 (11:49 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 24 Oct 2006 11:49:25 +0000 (11:49 +0000)
src/eval.c
src/version.c

index c777136568ae340fb87050405ff79a90bf3a5ba0..7c8babab9f32be16422b8141be8cd3ba69d86fc4 100644 (file)
@@ -3125,7 +3125,12 @@ ex_call(eap)
     funcdict_T fudi;
 
     tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
-    vim_free(fudi.fd_newkey);
+    if (fudi.fd_newkey != NULL)
+    {
+       /* Still need to give an error message for missing key. */
+       EMSG2(_(e_dictkey), fudi.fd_newkey);
+       vim_free(fudi.fd_newkey);
+    }
     if (tofree == NULL)
        return;
 
index 8538afe1e4957c61a523d57b0639015c9ed3314a..3c67bb323e83ec83566b42b2b3df25cfc2484d90 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    148,
 /**/
     147,
 /**/