Commit 16113e81 authored by bar@mysql.com's avatar bar@mysql.com

uca-dump.c:

  Use less wide spaces on the primary level,
  to avoid big diff for ctype-uca.c.
parent 1bcb1b9d
...@@ -269,7 +269,7 @@ int main(int ac, char **av) ...@@ -269,7 +269,7 @@ int main(int ac, char **av)
*/ */
int tmp= weight[i]; int tmp= weight[i];
if (w == 2 && tmp) if (w == 2 && tmp)
tmp= (int)(0x100 - weight[i]); tmp= (int)(0x20 - weight[i]);
printf("0x%04X", tmp); printf("0x%04X", tmp);
...@@ -304,7 +304,7 @@ int main(int ac, char **av) ...@@ -304,7 +304,7 @@ int main(int ac, char **av)
const char *comma= page < MY_UCA_NPAGES-1 ? "," : ""; const char *comma= page < MY_UCA_NPAGES-1 ? "," : "";
const char *nline= (page+1) % 4 ? "" : "\n"; const char *nline= (page+1) % 4 ? "" : "\n";
if (!pagemaxlen[page]) if (!pagemaxlen[page])
printf("NULL %s%s", comma , nline); printf("NULL %s%s%s", w ? " ": "", comma , nline);
else else
printf("page%03Xdata%s%s%s", page, pname[w], comma, nline); printf("page%03Xdata%s%s%s", page, pname[w], comma, nline);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment