* lib/argmatch.h (argmatch_##Name##_doc_col): If some argument
requires column 20 or more, return 20.
+2019-07-07 Akim Demaille <akim@lrde.epita.fr>
+
+ argmatch: adjust columns for help2man.
+ * lib/argmatch.h (argmatch_##Name##_doc_col): If some argument
+ requires column 20 or more, return 20.
+
2019-07-06 Paul Eggert <eggert@cs.ucla.edu>
areadlink-with-size: avoid realloc when size==0
for (int j = 0; g->args[j].arg; ++j) \
if (! memcmp (&g->args[ival].val, &g->args[j].val, size)) \
col += (col == 4 ? 0 : 2) + strlen (g->args[j].arg); \
- /* Ignore series that are too wide. */ \
- if (col <= 20 && res <= col) \
- res = col; \
+ if (res <= col) \
+ res = col <= 20 ? col : 20; \
} \
return res ? res : 20; \
} \