diff options
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | term.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -65,6 +65,9 @@ - set a meaningful default if no `Bl' list type is assigned - have a blank `It' head for `Bl -tag' not puke + +- ignore horrendous m[] font colouring + reported by J.C. Roberts ************************************************************************ * formatting issues: ugly output @@ -315,7 +315,7 @@ alloc(char *outopts, enum termenc enc, enum termtype type) while (outopts && *outopts) switch (getsubopt(&outopts, UNCONST(toks), &v)) { case (0): - width = atoi(v); + width = (size_t)atoi(v); break; default: break; |