patch 8.2.4318: various comment and indent mistakes, returning wrong zero v8.2.4318
authorBram Moolenaar <Bram@vim.org>
Mon, 7 Feb 2022 13:56:44 +0000 (13:56 +0000)
committerBram Moolenaar <Bram@vim.org>
Mon, 7 Feb 2022 13:56:44 +0000 (13:56 +0000)
Problem:    Various comment and indent mistakes, returning wrong zero.
Solution:   Fix the mistakes.  Return NULL instead of FAIL.

src/clientserver.c
src/eval.c
src/evalvars.c
src/version.c
src/vim9cmds.c
src/window.c

index 793570abd80fb572d072711f363544ecb243ac78..caa6fdc668af923ff2a5be73686822d95e2534ce 100644 (file)
@@ -651,7 +651,7 @@ build_drop_cmd(
     ga_concat(&ga, (char_u *)":");
     if (inicmd != NULL)
     {
-       // Can't use <CR> after "inicmd", because an "startinsert" would cause
+       // Can't use <CR> after "inicmd", because a "startinsert" would cause
        // the following commands to be inserted as text.  Use a "|",
        // hopefully "inicmd" does allow this...
        ga_concat(&ga, inicmd);
index b5ccc4bdfb8043bbb87872c6781227956ac93b62..7ab05be122e73f198c244bc59a7089a65ef9b241 100644 (file)
@@ -629,10 +629,10 @@ eval_expr(char_u *arg, exarg_T *eap)
  */
     static char_u *
 deref_function_name(
-           char_u **arg,
-           char_u **tofree,
-           evalarg_T *evalarg,
-           int verbose)
+           char_u      **arg,
+           char_u      **tofree,
+           evalarg_T   *evalarg,
+           int         verbose)
 {
     typval_T   ref;
     char_u     *name = *arg;
@@ -2955,7 +2955,7 @@ eval_addlist(typval_T *tv1, typval_T *tv2)
 
 /*
  * Handle fourth level expression:
- *     +       number addition
+ *     +       number addition, concatenation of list or blob
  *     -       number subtraction
  *     .       string concatenation (if script version is 1)
  *     ..      string concatenation
index b3436067f1db3cf4cfd9774724a104db3489b96c..994b9799c84d99a5bfb1613731e5c1d11db9b11c 100644 (file)
@@ -3461,7 +3461,8 @@ set_var_const(
        semsg(_(e_illegal_variable_name_str), name);
        goto failed;
     }
-    is_script_local = ht == get_script_local_ht() || sid != 0 || var_in_autoload;
+    is_script_local = ht == get_script_local_ht() || sid != 0
+                                                           || var_in_autoload;
 
     if (vim9script
            && !is_script_local
index 956df653a218311f0e4a665585bcc11c3046f93c..f30ba25f5033285abec513e224e76a90ef7e64e8 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4318,
 /**/
     4317,
 /**/
index 90b61dbb34ba318a8f00b434230d1ba96ff88375..b9a02939251476fd605edb1424ecd2213c341548 100644 (file)
@@ -1420,7 +1420,7 @@ compile_catch(char_u *arg, cctx_T *cctx UNUSED)
        {
            semsg(_(e_separator_mismatch_str), p);
            vim_free(tofree);
-           return FAIL;
+           return NULL;
        }
        if (tofree == NULL)
            len = (int)(end - (p + 1));
@@ -1430,9 +1430,9 @@ compile_catch(char_u *arg, cctx_T *cctx UNUSED)
        vim_free(tofree);
        p += len + 2 + dropped;
        if (pat == NULL)
-           return FAIL;
+           return NULL;
        if (generate_PUSHS(cctx, &pat) == FAIL)
-           return FAIL;
+           return NULL;
 
        if (generate_COMPARE(cctx, EXPR_MATCH, FALSE) == FAIL)
            return NULL;
index f80334d727dba725f516dca4af42044dfd84e363..4fb92e035d929bad74beba4d2f98e71e78c78b8a 100644 (file)
@@ -766,7 +766,7 @@ cmd_with_count(
 }
 
 /*
- * If "split_disallowed" is set given an error and return FAIL.
+ * If "split_disallowed" is set give an error and return FAIL.
  * Otherwise return OK.
  */
     static int