enhanced the feed processor to auto-terminate auto-forged xlist without semicolon if it comes right before the right brace
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-11-29 17:12:21 +09:00
parent bb4786b6ca
commit e6f6d33e51
2 changed files with 18 additions and 2 deletions

View File

@ -636,7 +636,7 @@ int main (int argc, char* argv[])
}
}
if (opt.ind >= argc) goto print_usage;
if ((opt.ind + 1) != argc) goto print_usage;
#endif
hcl = hcl_openstd(HCL_SIZEOF(xtn_t), HCL_NULL);
@ -653,7 +653,7 @@ int main (int argc, char* argv[])
hcl_setoption (hcl, HCL_SYMTAB_SIZE, &tab_size);
tab_size = 5000;
hcl_setoption (hcl, HCL_SYSDIC_SIZE, &tab_size);
tab_size = 600;
tab_size = 600; /* TODO: choose a better stack size or make this user specifiable */
hcl_setoption (hcl, HCL_PROCSTK_SIZE, &tab_size);
}