]> granicus.if.org Git - vim/commitdiff
patch 7.4.2249 v7.4.2249
authorBram Moolenaar <Bram@vim.org>
Wed, 24 Aug 2016 20:06:38 +0000 (22:06 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 24 Aug 2016 20:06:38 +0000 (22:06 +0200)
Problem:    Missing colon in error message.
Solution:   Add the colon. (Dominique Pelle)

src/userfunc.c
src/version.c

index 55bd97c5ba2a90433a5dc68110572d45e433b315..bd67abbaf9a42c65f62ea862ecdcd9f10abe71bc 100644 (file)
@@ -1955,7 +1955,7 @@ ex_function(exarg_T *eap)
            p += 7;
            if (current_funccal == NULL)
            {
-               emsg_funcname(N_("E932 Closure function should not be at top level: %s"),
+               emsg_funcname(N_("E932: Closure function should not be at top level: %s"),
                        name == NULL ? (char_u *)"" : name);
                goto erret;
            }
@@ -2738,7 +2738,7 @@ ex_delfunction(exarg_T *eap)
            /* A normal function (not a numbered function or lambda) has a
             * refcount of 1 for the entry in the hashtable.  When deleting
             * it and the refcount is more than one, it should be kept.
-            * A numbered function and lambda snould be kept if the refcount is
+            * A numbered function and lambda should be kept if the refcount is
             * one or more. */
            if (fp->uf_refcount > (func_name_refcount(fp->uf_name) ? 0 : 1))
            {
@@ -3479,7 +3479,7 @@ free_unref_funccal(int copyID, int testing)
 }
 
 /*
- * Get function call environment based on bactrace debug level
+ * Get function call environment based on backtrace debug level
  */
     static funccall_T *
 get_funccal(void)
index 8b9818efa275941b6f85e4f545ecc4616ea0c9fe..b10a70cec8c35d58ad25a45b83f6f592701f416c 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2249,
 /**/
     2248,
 /**/