]> granicus.if.org Git - neomutt/commitdiff
reformat
authorRichard Russon <rich@flatcap.org>
Thu, 18 Aug 2016 16:10:10 +0000 (17:10 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 18 Aug 2016 16:10:10 +0000 (17:10 +0100)
curs_main.c

index 621f1b2b2158a48b50c98a1e015aa7c5082fcea0..7fffa4f56b8beba757266b59c6351d1afc87c212 100644 (file)
@@ -496,111 +496,124 @@ static void resort_index (MUTTMENU *menu)
 void
 mutt_draw_statusline (int cols, const char *buf, int buflen)
 {
-       int i      = 0;
-       int offset = 0;
-       int found  = 0;
-       int chunks = 0;
-       int len    = 0;
+  int i      = 0;
+  int offset = 0;
+  int found  = 0;
+  int chunks = 0;
+  int len    = 0;
 
-       struct syntax_t {
-               int color;
-               int first;
-               int last;
-       } *syntax = NULL;
-
-       if (!buf)
-               return;
+  struct syntax_t
+  {
+    int color;
+    int first;
+    int last;
+  } *syntax = NULL;
 
-       do {
-               COLOR_LINE *cl;
-               found = 0;
+  if (!buf)
+    return;
 
-               if (!buf[offset])
-                       break;
+  do
+  {
+    COLOR_LINE *cl;
+    found = 0;
 
-               /* loop through each "color status regex" */
-               for (cl = ColorStatusList; cl; cl = cl->next) {
-                       regmatch_t pmatch[cl->match + 1];
+    if (!buf[offset])
+      break;
 
-                       if (regexec (&cl->rx, buf + offset, cl->match + 1, pmatch, 0) != 0)
-                               continue;       /* regex doesn't match the status bar */
+    /* loop through each "color status regex" */
+    for (cl = ColorStatusList; cl; cl = cl->next)
+    {
+      regmatch_t pmatch[cl->match + 1];
 
-                       int first = pmatch[cl->match].rm_so + offset;
-                       int last  = pmatch[cl->match].rm_eo + offset;
+      if (regexec (&cl->rx, buf + offset, cl->match + 1, pmatch, 0) != 0)
+        continue; /* regex doesn't match the status bar */
 
-                       if (first == last)
-                               continue;       /* ignore an empty regex */
+      int first = pmatch[cl->match].rm_so + offset;
+      int last  = pmatch[cl->match].rm_eo + offset;
 
-                       if (!found) {
-                               chunks++;
-                               safe_realloc (&syntax, chunks * sizeof (struct syntax_t));
-                       }
+      if (first == last)
+        continue; /* ignore an empty regex */
 
-                       i = chunks - 1;
-                       if (!found || (first < syntax[i].first) || ((first == syntax[i].first) && (last > syntax[i].last))) {
-                               syntax[i].color = cl->pair;
-                               syntax[i].first = first;
-                               syntax[i].last  = last;
-                       }
-                       found = 1;
-               }
+      if (!found)
+      {
+        chunks++;
+        safe_realloc (&syntax, chunks * sizeof (struct syntax_t));
+      }
 
-               if (syntax) {
-                       offset = syntax[i].last;
-               }
-       } while (found);
+      i = chunks - 1;
+      if (!found || (first < syntax[i].first) || ((first == syntax[i].first) && (last > syntax[i].last)))
+      {
+        syntax[i].color = cl->pair;
+        syntax[i].first = first;
+        syntax[i].last  = last;
+      }
+      found = 1;
+    }
 
-       /* Only 'len' bytes will fit into 'cols' screen columns */
-       len = mutt_wstr_trunc (buf, buflen, cols, NULL);
+    if (syntax)
+    {
+      offset = syntax[i].last;
+    }
+  } while (found);
 
-       offset = 0;
+  /* Only 'len' bytes will fit into 'cols' screen columns */
+  len = mutt_wstr_trunc (buf, buflen, cols, NULL);
 
-       if ((chunks > 0) && (syntax[0].first > 0)) {
-               /* Text before the first highlight */
-               addnstr (buf, MIN(len, syntax[0].first));
-               attrset (ColorDefs[MT_COLOR_STATUS]);
-               if (len <= syntax[0].first)
-                       goto dsl_finish;        /* no more room */
+  offset = 0;
 
-               offset = syntax[0].first;
-       }
+  if ((chunks > 0) && (syntax[0].first > 0))
+  {
+    /* Text before the first highlight */
+    addnstr (buf, MIN(len, syntax[0].first));
+    attrset (ColorDefs[MT_COLOR_STATUS]);
+    if (len <= syntax[0].first)
+      goto dsl_finish;  /* no more room */
 
-       for (i = 0; i < chunks; i++) {
-               /* Highlighted text */
-               attrset (syntax[i].color);
-               addnstr (buf + offset, MIN(len, syntax[i].last) - offset);
-               if (len <= syntax[i].last)
-                       goto dsl_finish;        /* no more room */
+    offset = syntax[0].first;
+  }
 
-               int next;
-               if ((i + 1) == chunks) {
-                       next = len;
-               } else {
-                       next = MIN (len, syntax[i+1].first);
-               }
+  for (i = 0; i < chunks; i++)
+  {
+    /* Highlighted text */
+    attrset (syntax[i].color);
+    addnstr (buf + offset, MIN(len, syntax[i].last) - offset);
+    if (len <= syntax[i].last)
+      goto dsl_finish;  /* no more room */
+
+    int next;
+    if ((i + 1) == chunks)
+    {
+      next = len;
+    }
+    else
+    {
+      next = MIN (len, syntax[i+1].first);
+    }
 
-               attrset (ColorDefs[MT_COLOR_STATUS]);
-               offset = syntax[i].last;
-               addnstr (buf + offset, next - offset);
+    attrset (ColorDefs[MT_COLOR_STATUS]);
+    offset = syntax[i].last;
+    addnstr (buf + offset, next - offset);
 
-               offset = next;
-               if (offset >= len)
-                       goto dsl_finish;        /* no more room */
-       }
+    offset = next;
+    if (offset >= len)
+      goto dsl_finish;  /* no more room */
+  }
 
-       attrset (ColorDefs[MT_COLOR_STATUS]);
-       if (offset < len) {
-               /* Text after the last highlight */
-               addnstr (buf + offset, len - offset);
-       }
+  attrset (ColorDefs[MT_COLOR_STATUS]);
+  if (offset < len)
+  {
+    /* Text after the last highlight */
+    addnstr (buf + offset, len - offset);
+  }
 
-       int width = mutt_strwidth (buf);
-       if (width < cols) {
-               /* Pad the rest of the line with whitespace */
-               mutt_paddstr (cols - width, "");
-       }
+  int width = mutt_strwidth (buf);
+  if (width < cols)
+  {
+    /* Pad the rest of the line with whitespace */
+    mutt_paddstr (cols - width, "");
+  }
 dsl_finish:
-       FREE(&syntax);
+  FREE(&syntax);
 }
 
 static const struct mapping_t IndexHelp[] = {