summaryrefslogtreecommitdiffstats
path: root/mdoc.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-25 12:37:20 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-25 12:37:20 +0000
commitbd60b6e6dde1b45c862a7cb7092e5a6985629c1f (patch)
tree1b4eb8fbcedf0b30869618fd4adb0e76fcc58f91 /mdoc.c
parent67f57cab47c6371e6a42d8d6952b35485c7b0b85 (diff)
downloadmandoc-bd60b6e6dde1b45c862a7cb7092e5a6985629c1f.tar.gz
Modified version of Ingo Schwarze's patch for hyphen-breaking.
Breakable hyphens are cued in the back-ends (with ASCII_HYPH) and acted upon in term.c or ignored in html.c. Also cleaned up XML decl printing (no need for extra vars).
Diffstat (limited to 'mdoc.c')
-rw-r--r--mdoc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mdoc.c b/mdoc.c
index 6b14fdd5..fa633c55 100644
--- a/mdoc.c
+++ b/mdoc.c
@@ -563,6 +563,10 @@ mdoc_ptext(struct mdoc *m, int line, char *buf, int offs)
ws = NULL;
for (c = end = buf + offs; *c; c++) {
switch (*c) {
+ case '-':
+ if (mandoc_hyph(buf + offs, c))
+ *c = ASCII_HYPH;
+ break;
case ' ':
if (NULL == ws)
ws = c;