]> granicus.if.org Git - vim/commitdiff
patch 9.0.0934: various code formatting issues v9.0.0934
authorBram Moolenaar <Bram@vim.org>
Thu, 24 Nov 2022 00:09:02 +0000 (00:09 +0000)
committerBram Moolenaar <Bram@vim.org>
Thu, 24 Nov 2022 00:09:02 +0000 (00:09 +0000)
Problem:    Various code formatting issues.
Solution:   Improve code formatting.

src/arglist.c
src/gui_xim.c
src/libvterm/src/parser.c
src/list.c
src/main.c
src/ops.c
src/screen.c
src/terminal.c
src/version.c

index b35cdfe7ab41218d90686844fadd121089bafeb5..6183fafff69e14269a3dd4f334d8cb28c38699d4 100644 (file)
@@ -413,8 +413,7 @@ arglist_del_files(garray_T *alist_ga)
 
        didone = FALSE;
        for (match = 0; match < ARGCOUNT; ++match)
-           if (vim_regexec(&regmatch, alist_name(&ARGLIST[match]),
-                       (colnr_T)0))
+           if (vim_regexec(&regmatch, alist_name(&ARGLIST[match]), (colnr_T)0))
            {
                didone = TRUE;
                vim_free(ARGLIST[match].ae_fname);
index d384cbc05994ec8ffe90cc1d09047385e89aba58..6998f0c4363150e43a42dd1d999b890850027e16 100644 (file)
@@ -133,7 +133,7 @@ free_xim_stuff(void)
 
 #if defined(FEAT_EVAL) || defined(PROTO)
 /*
- * Mark the global 'imactivatefunc' and 'imstatusfunc' callbacks with 'copyID'
+ * Mark the global 'imactivatefunc' and 'imstatusfunc' callbacks with "copyID"
  * so that they are not garbage collected.
  */
     int
index d4cd0dc477651408a529046badc086864c18b2bf..0d1e12b0a2b71e63b7c02d0abc3754849acce48e 100644 (file)
@@ -34,7 +34,7 @@ static void do_csi(VTerm *vt, char command)
 
   if(vt->parser.callbacks && vt->parser.callbacks->csi)
     if((*vt->parser.callbacks->csi)(
-          vt->parser.v.csi.leaderlen ? vt->parser.v.csi.leader : NULL, 
+          vt->parser.v.csi.leaderlen ? vt->parser.v.csi.leader : NULL,
           vt->parser.v.csi.args,
           vt->parser.v.csi.argi,
           vt->parser.intermedlen ? vt->parser.intermed : NULL,
index c67b7fe9db25631b97946a5508b256fa4e7aa47c..8f228a1aebae6dedb06ab1d797f63236526ad16a 100644 (file)
@@ -109,6 +109,8 @@ list_alloc_id(alloc_id_T id UNUSED)
 
 /*
  * Allocate space for a list, plus "count" items.
+ * This uses one allocation for efficiency.
+ * The reference count is not set.
  * Next list_set_item() must be called for each item.
  */
     list_T *
@@ -117,33 +119,34 @@ list_alloc_with_items(int count)
     list_T     *l;
 
     l = (list_T *)alloc_clear(sizeof(list_T) + count * sizeof(listitem_T));
-    if (l != NULL)
+    if (l == NULL)
+       return NULL;
+
+    list_init(l);
+
+    if (count > 0)
     {
-       list_init(l);
+       listitem_T      *li = (listitem_T *)(l + 1);
+       int             i;
 
-       if (count > 0)
+       l->lv_len = count;
+       l->lv_with_items = count;
+       l->lv_first = li;
+       l->lv_u.mat.lv_last = li + count - 1;
+       for (i = 0; i < count; ++i)
        {
-           listitem_T  *li = (listitem_T *)(l + 1);
-           int         i;
-
-           l->lv_len = count;
-           l->lv_with_items = count;
-           l->lv_first = li;
-           l->lv_u.mat.lv_last = li + count - 1;
-           for (i = 0; i < count; ++i)
-           {
-               if (i == 0)
-                   li->li_prev = NULL;
-               else
-                   li->li_prev = li - 1;
-               if (i == count - 1)
-                   li->li_next = NULL;
-               else
-                   li->li_next = li + 1;
-               ++li;
-           }
+           if (i == 0)
+               li->li_prev = NULL;
+           else
+               li->li_prev = li - 1;
+           if (i == count - 1)
+               li->li_next = NULL;
+           else
+               li->li_next = li + 1;
+           ++li;
        }
     }
+
     return l;
 }
 
index 3a050cf5bc07e7f2339baf7f5e2d49abc5cc594e..ca28eca7232d6f65d5aadf1a79f624f1af6b74c5 100644 (file)
@@ -1298,16 +1298,15 @@ main_loop(
 #endif
 
            // Trigger CursorMoved if the cursor moved.
-           if (!finish_op && (
-                       has_cursormoved()
+           if (!finish_op && (has_cursormoved()
 #ifdef FEAT_PROP_POPUP
-                       || popup_visible
+                               || popup_visible
 #endif
 #ifdef FEAT_CONCEAL
-                       || curwin->w_p_cole > 0
+                               || curwin->w_p_cole > 0
 #endif
-                       )
-                && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
+                             )
+                   && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
            {
                if (has_cursormoved())
                    apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
@@ -1401,10 +1400,8 @@ main_loop(
            }
 #endif
 
-           /*
-            * Before redrawing, make sure w_topline is correct, and w_leftcol
-            * if lines don't wrap, and w_skipcol if lines wrap.
-            */
+           // Before redrawing, make sure w_topline is correct, and w_leftcol
+           // if lines don't wrap, and w_skipcol if lines wrap.
            update_topline();
            validate_cursor();
 
index 6e51822889596bc598ea5b6ec9964881d107474f..bd927860e05fdf8e9c6ff55515a2b648d9308aac 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -3422,7 +3422,7 @@ free_operatorfunc_option(void)
 
 #if defined(FEAT_EVAL) || defined(PROTO)
 /*
- * Mark the global 'operatorfunc' callback with 'copyID' so that it is not
+ * Mark the global 'operatorfunc' callback with "copyID" so that it is not
  * garbage collected.
  */
     int
index 5855b90080049dda60c2a66fb7661b59af111dcd..47288118c551f2f1f370f2a692f3b6e3f488e857 100644 (file)
@@ -1017,7 +1017,7 @@ win_redr_custom(
     char_u     *stl;
     char_u     *p;
     char_u     *opt_name;
-    int         opt_scope = 0;
+    int                opt_scope = 0;
     stl_hlrec_T *hltab;
     stl_hlrec_T *tabtab;
     win_T      *ewp;
index fe82fa3fa5f8b7b571688114f7d69ec7fe407e8e..d0cdd4500cce907c48320f64238cb67cdf1af500 100644 (file)
@@ -1234,8 +1234,8 @@ update_cursor(term_T *term, int redraw)
            gui_mch_flush();
        }
 #endif
-        // Make sure an invoked autocmd doesn't delete the buffer (and the
-        // terminal) under our fingers.
+       // Make sure an invoked autocmd doesn't delete the buffer (and the
+       // terminal) under our fingers.
        ++term->tl_buffer->b_locked;
 
        // save and restore curwin and curbuf, in case the autocmd changes them
index 54eb3552e61b90be44e3853f59c851bc928f073a..55f363fb183d7c417d978b9342ddf2f86252c5a1 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    934,
 /**/
     933,
 /**/