diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-28 14:43:35 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-28 14:43:35 +0000 |
commit | cdf9be249b67e8fce433f914030a005720a128e2 (patch) | |
tree | f9572f0aeac4bda421308976554bdef5f179ee97 /mdocterm.c | |
parent | c9b7739a74541dbef4f181b528747683621fdc59 (diff) | |
download | mandoc-cdf9be249b67e8fce433f914030a005720a128e2.tar.gz |
Made `Ds' emit a warning.
Default width is 78.
Diffstat (limited to 'mdocterm.c')
-rw-r--r-- | mdocterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ main(int argc, char *argv[]) if (NULL == (mdoc = mmain_mdoc(p))) mmain_exit(p, 1); - termp.maxrmargin = 80; /* XXX */ + termp.maxrmargin = 78; /* XXX */ termp.rmargin = termp.maxrmargin; termp.maxcols = 1024; termp.offset = termp.col = 0; |