[use-table] Fix previous commit

This commit is contained in:
Behdad Esfahbod 2022-07-27 14:00:06 -06:00
parent 0788f77371
commit 0c5b60acbd
2 changed files with 3 additions and 5 deletions

View File

@ -497,7 +497,7 @@ for k,v in sorted(use_positions.items()):
tag = k + suf
print ("#undef %s" % tag)
print ()
print ("""
print (r"""
#ifdef HB_USE_TABLE_MAIN
int main (int argc, char **argv)
{

View File

@ -398,16 +398,14 @@ int main (int argc, char **argv)
{
if (argc != 2)
{
printf ("usage: %s hex-char
", argv[0]);
printf ("usage: %s hex-char\n", argv[0]);
return 1;
}
hb_codepoint_t u;
sscanf (argv[1], "%x", &u);
printf ("%d
", hb_use_get_category (u));
printf ("%d\n", hb_use_get_category (u));
return 0;
}