Commit 135cdcef authored by unknown's avatar unknown
Browse files

uca-dump.c:

  Use less wide spaces on the primary level,
  to avoid big diff for ctype-uca.c.


strings/uca-dump.c:
  Use less wide spaces on the primary level,
  to avoid big diff for ctype-uca.c.
parent f3097674
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ int main(int ac, char **av)
          */
          int tmp= weight[i];
          if (w == 2 && tmp)
            tmp= (int)(0x100 - weight[i]);
            tmp= (int)(0x20 - weight[i]);
          
          
          printf("0x%04X", tmp);
@@ -304,7 +304,7 @@ int main(int ac, char **av)
      const char *comma= page < MY_UCA_NPAGES-1 ? "," : "";
      const char *nline= (page+1) % 4 ? "" : "\n";
      if (!pagemaxlen[page])
        printf("NULL        %s%s", comma , nline);
        printf("NULL       %s%s%s", w ? " ": "",  comma , nline);
      else
        printf("page%03Xdata%s%s%s", page, pname[w], comma, nline);
    }