Cut-and-paste error: reference to "man page" in Windows Help section.
[sgt/halibut] / bk_man.c
CommitLineData
7136a6c7 1/*
2 * man page backend for Halibut
3 */
4
5#include <stdio.h>
6#include <stdlib.h>
7#include <assert.h>
8#include "halibut.h"
9
4b3c5afb 10typedef struct {
11 wchar_t *th;
12 int headnumbers;
13 int mindepth;
50d6b4bd 14 char *filename;
93688997 15 int charset;
2a2375db 16 wchar_t *bullet, *rule, *lquote, *rquote;
4b3c5afb 17} manconfig;
18
b0ea3acd 19static void man_text(FILE *, word *,
20 int newline, int quote_props, manconfig *conf);
21static void man_codepara(FILE *, word *, int charset);
22static int man_convert(wchar_t const *s, int maxlen,
23 char **result, int quote_props,
24 int charset, charset_state *state);
25
e555d8e3 26/*
27 * My TROFF reference is "NROFF/TROFF User's Manual", Joseph
28 * F. Ossana, October 11 1976.
29 *
30 * not yet used:
31 * \(ru rule
32 * \(pl math plus
33 * \(mi math minus
34 * \(eq math equals
35 * \(ga grave accent
36 * \(ul underrule
37 * \(sl slash (matching bakslash)
38 * \(br box vertical rule
39 * \(br Bell System logo
40 * \(or or
41 * all characters for constructing large brackets
42 */
43
44static struct {
45 unsigned short uni;
46 char const *troff;
47} const man_charmap[] = {
48 {0x00A2, "\\(ct"}, {0x00A7, "\\(sc"}, {0x00A9, "\\(co"}, {0x00AC, "\\(no"},
49 {0x00AE, "\\(rg"}, {0x00B0, "\\(de"}, {0x00B1, "\\(+-"}, {0x00B4, "\\(aa"},
50 {0x00BC, "\\(14"}, {0x00BD, "\\(12"}, {0x00BE, "\\(34"}, {0x00D7, "\\(mu"},
51 {0x00F7, "\\(di"},
52
53 {0x0391, "\\(*A"}, {0x0392, "\\(*B"}, {0x0393, "\\(*G"}, {0x0394, "\\(*D"},
54 {0x0395, "\\(*E"}, {0x0396, "\\(*Z"}, {0x0397, "\\(*Y"}, {0x0398, "\\(*H"},
55 {0x0399, "\\(*I"}, {0x039A, "\\(*K"}, {0x039B, "\\(*L"}, {0x039C, "\\(*M"},
56 {0x039D, "\\(*N"}, {0x039E, "\\(*C"}, {0x039F, "\\(*O"}, {0x03A0, "\\(*P"},
57 {0x03A1, "\\(*R"}, {0x03A3, "\\(*S"}, {0x03A4, "\\(*T"}, {0x03A5, "\\(*U"},
58 {0x03A6, "\\(*F"}, {0x03A7, "\\(*X"}, {0x03A8, "\\(*Q"}, {0x03A9, "\\(*W"},
59 {0x03B1, "\\(*a"}, {0x03B2, "\\(*b"}, {0x03B3, "\\(*g"}, {0x03B4, "\\(*d"},
60 {0x03B5, "\\(*e"}, {0x03B6, "\\(*z"}, {0x03B7, "\\(*y"}, {0x03B8, "\\(*h"},
61 {0x03B9, "\\(*i"}, {0x03BA, "\\(*k"}, {0x03BB, "\\(*l"}, {0x03BC, "\\(*m"},
62 {0x03BD, "\\(*n"}, {0x03BE, "\\(*c"}, {0x03BF, "\\(*o"}, {0x03C0, "\\(*p"},
63 {0x03C1, "\\(*r"}, {0x03C2, "\\(ts"}, {0x03C3, "\\(*s"}, {0x03C4, "\\(*t"},
64 {0x03C5, "\\(*u"}, {0x03C6, "\\(*f"}, {0x03C7, "\\(*x"}, {0x03C8, "\\(*q"},
65 {0x03C9, "\\(*w"},
66
67 {0x2014, "\\(em"}, {0x2018, "`"}, {0x2019, "'"}, {0x2020, "\\(dg"},
68 {0x2021, "\\(dd"}, {0x2022, "\\(bu"}, {0x2032, "\\(fm"},
69
70 {0x2190, "\\(<-"}, {0x2191, "\\(ua"}, {0x2192, "\\(->"}, {0x2193, "\\(da"},
71
72 {0x2202, "\\(pd"}, {0x2205, "\\(es"}, {0x2207, "\\(gr"}, {0x2208, "\\(mo"},
73 {0x2212, "\\-"}, {0x2217, "\\(**"}, {0x221A, "\\(sr"}, {0x221D, "\\(pt"},
74 {0x221E, "\\(if"}, {0x2229, "\\(ca"}, {0x222A, "\\(cu"}, {0x222B, "\\(is"},
75 {0x223C, "\\(ap"}, {0x2245, "\\(~="}, {0x2260, "\\(!="}, {0x2261, "\\(=="},
76 {0x2264, "\\(<="}, {0x2265, "\\(>="}, {0x2282, "\\(sb"}, {0x2283, "\\(sp"},
77 {0x2286, "\\(ib"}, {0x2287, "\\(ip"},
78
79 {0x25A1, "\\(sq"}, {0x25CB, "\\(ci"},
80
81 {0x261C, "\\(lh"}, {0x261E, "\\(rh"},
82};
83
84static char const *troffchar(int unichar) {
85 int i, j, k;
86
87 i = -1;
88 j = lenof(man_charmap);
89 while (j-i > 1) {
90 k = (i + j) / 2;
91 if (man_charmap[k].uni == unichar)
92 return man_charmap[k].troff;
93 else if (man_charmap[k].uni > unichar)
94 j = k;
95 else
96 i = k;
97 }
98 return NULL;
99}
100
101/*
102 * Return TRUE if we can represent the whole of the given string either
103 * in the output charset or as named characters; FALSE otherwise.
104 */
105static int troff_ok(int charset, wchar_t *string) {
106 wchar_t test[2];
107 while (*string) {
108 test[0] = *string;
109 test[1] = 0;
110 if (!cvt_ok(charset, test) && !troffchar(*string))
111 return FALSE;
112 string++;
113 }
114 return TRUE;
115}
116
4b3c5afb 117static manconfig man_configure(paragraph *source) {
b0ea3acd 118 paragraph *p;
4b3c5afb 119 manconfig ret;
120
121 /*
122 * Defaults.
123 */
124 ret.th = NULL;
125 ret.headnumbers = FALSE;
126 ret.mindepth = 0;
50d6b4bd 127 ret.filename = dupstr("output.1");
93688997 128 ret.charset = CS_ASCII;
b0ea3acd 129 ret.bullet = L"\x2022\0o\0\0";
2a2375db 130 ret.rule = L"\x2500\0-\0\0";
b0ea3acd 131 ret.lquote = L"\x2018\0\x2019\0\"\0\"\0\0";
132 ret.rquote = uadv(ret.lquote);
4b3c5afb 133
b0ea3acd 134 /*
135 * Two-pass configuration so that we can pick up global config
136 * (e.g. `quotes') before having it overridden by specific
c5546514 137 * config (`man-quotes'), irrespective of the order in which
b0ea3acd 138 * they occur.
139 */
140 for (p = source; p; p = p->next) {
141 if (p->type == para_Config) {
142 if (!ustricmp(p->keyword, L"quotes")) {
143 if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) {
144 ret.lquote = uadv(p->keyword);
145 ret.rquote = uadv(ret.lquote);
146 }
147 }
148 }
149 }
150
151 for (p = source; p; p = p->next) {
152 if (p->type == para_Config) {
153 if (!ustricmp(p->keyword, L"man-identity")) {
4b3c5afb 154 wchar_t *wp, *ep;
155
b0ea3acd 156 wp = uadv(p->keyword);
4b3c5afb 157 ep = wp;
158 while (*ep)
159 ep = uadv(ep);
50d6b4bd 160 sfree(ret.th);
f1530049 161 ret.th = snewn(ep - wp + 1, wchar_t);
4b3c5afb 162 memcpy(ret.th, wp, (ep - wp + 1) * sizeof(wchar_t));
b0ea3acd 163 } else if (!ustricmp(p->keyword, L"man-charset")) {
0960a3d8 164 ret.charset = charset_from_ustr(&p->fpos, uadv(p->keyword));
b0ea3acd 165 } else if (!ustricmp(p->keyword, L"man-headnumbers")) {
166 ret.headnumbers = utob(uadv(p->keyword));
167 } else if (!ustricmp(p->keyword, L"man-mindepth")) {
168 ret.mindepth = utoi(uadv(p->keyword));
169 } else if (!ustricmp(p->keyword, L"man-filename")) {
50d6b4bd 170 sfree(ret.filename);
b0ea3acd 171 ret.filename = dupstr(adv(p->origkeyword));
172 } else if (!ustricmp(p->keyword, L"man-bullet")) {
173 ret.bullet = uadv(p->keyword);
2a2375db 174 } else if (!ustricmp(p->keyword, L"man-rule")) {
175 ret.rule = uadv(p->keyword);
c5546514 176 } else if (!ustricmp(p->keyword, L"man-quotes")) {
b0ea3acd 177 if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) {
178 ret.lquote = uadv(p->keyword);
179 ret.rquote = uadv(ret.lquote);
180 }
4b3c5afb 181 }
182 }
183 }
184
b0ea3acd 185 /*
2a2375db 186 * Now process fallbacks on quote characters, bullets, and the
187 * rule character.
b0ea3acd 188 */
189 while (*uadv(ret.rquote) && *uadv(uadv(ret.rquote)) &&
e555d8e3 190 (!troff_ok(ret.charset, ret.lquote) ||
191 !troff_ok(ret.charset, ret.rquote))) {
b0ea3acd 192 ret.lquote = uadv(ret.rquote);
193 ret.rquote = uadv(ret.lquote);
194 }
195
196 while (*ret.bullet && *uadv(ret.bullet) &&
e555d8e3 197 !troff_ok(ret.charset, ret.bullet))
b0ea3acd 198 ret.bullet = uadv(ret.bullet);
199
2a2375db 200 while (*ret.rule && *uadv(ret.rule) &&
201 !troff_ok(ret.charset, ret.rule))
202 ret.rule = uadv(ret.rule);
203
4b3c5afb 204 return ret;
205}
206
207static void man_conf_cleanup(manconfig cf)
208{
209 sfree(cf.th);
50d6b4bd 210 sfree(cf.filename);
4b3c5afb 211}
7136a6c7 212
ba9c1487 213paragraph *man_config_filename(char *filename)
214{
e4ea58f8 215 return cmdline_cfg_simple("man-filename", filename, NULL);
ba9c1487 216}
217
e579728e 218#define QUOTE_INITCTRL 1 /* quote initial . and ' on a line */
219#define QUOTE_QUOTES 2 /* quote double quotes by doubling them */
220#define QUOTE_LITHYPHENS 4 /* don't convert hyphens into \(hy */
7136a6c7 221
222void man_backend(paragraph *sourceform, keywordlist *keywords,
43341922 223 indexdata *idx, void *unused) {
7136a6c7 224 paragraph *p;
225 FILE *fp;
4b3c5afb 226 manconfig conf;
02478c4f 227 int had_described_thing;
7136a6c7 228
43341922 229 IGNORE(unused);
230 IGNORE(keywords);
231 IGNORE(idx);
7136a6c7 232
4b3c5afb 233 conf = man_configure(sourceform);
234
7136a6c7 235 /*
50d6b4bd 236 * Open the output file.
7136a6c7 237 */
50d6b4bd 238 fp = fopen(conf.filename, "w");
7136a6c7 239 if (!fp) {
50d6b4bd 240 error(err_cantopenw, conf.filename);
7136a6c7 241 return;
242 }
243
244 /* Do the version ID */
245 for (p = sourceform; p; p = p->next)
246 if (p->type == para_VersionID) {
247 fprintf(fp, ".\\\" ");
b0ea3acd 248 man_text(fp, p->words, TRUE, 0, &conf);
7136a6c7 249 }
250
4b3c5afb 251 /* .TH name-of-program manual-section */
22905f72 252 fprintf(fp, ".TH");
253 if (conf.th && *conf.th) {
4b3c5afb 254 char *c;
22905f72 255 wchar_t *wp;
256
257 for (wp = conf.th; *wp; wp = uadv(wp)) {
258 fputs(" \"", fp);
93688997 259 man_convert(wp, 0, &c, QUOTE_QUOTES, conf.charset, NULL);
22905f72 260 fputs(c, fp);
261 sfree(c);
262 fputc('"', fp);
4b3c5afb 263 }
264 }
22905f72 265 fputc('\n', fp);
7136a6c7 266
02478c4f 267 had_described_thing = FALSE;
268#define cleanup_described_thing do { \
269 if (had_described_thing) \
270 fprintf(fp, "\n"); \
271 had_described_thing = FALSE; \
272} while (0)
273
7136a6c7 274 for (p = sourceform; p; p = p->next) switch (p->type) {
275 /*
276 * Things we ignore because we've already processed them or
277 * aren't going to touch them in this pass.
278 */
279 case para_IM:
280 case para_BR:
281 case para_Biblio: /* only touch BiblioCited */
282 case para_VersionID:
7136a6c7 283 case para_NoCite:
284 case para_Title:
285 break;
286
287 /*
288 * Headings.
289 */
290 case para_Chapter:
291 case para_Appendix:
292 case para_UnnumberedChapter:
293 case para_Heading:
294 case para_Subsect:
8902e0ed 295
02478c4f 296 cleanup_described_thing;
4b3c5afb 297 {
298 int depth;
299 if (p->type == para_Subsect)
e4f8c48e 300 depth = p->aux + 1;
4b3c5afb 301 else if (p->type == para_Heading)
302 depth = 1;
303 else
304 depth = 0;
305 if (depth >= conf.mindepth) {
4118fc81 306 if (depth > conf.mindepth)
307 fprintf(fp, ".SS \"");
308 else
309 fprintf(fp, ".SH \"");
4b3c5afb 310 if (conf.headnumbers && p->kwtext) {
b0ea3acd 311 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
4b3c5afb 312 fprintf(fp, " ");
313 }
b0ea3acd 314 man_text(fp, p->words, FALSE, QUOTE_QUOTES, &conf);
4b3c5afb 315 fprintf(fp, "\"\n");
316 }
317 break;
318 }
7136a6c7 319
320 /*
321 * Code paragraphs.
322 */
323 case para_Code:
02478c4f 324 cleanup_described_thing;
7136a6c7 325 fprintf(fp, ".PP\n");
93688997 326 man_codepara(fp, p->words, conf.charset);
7136a6c7 327 break;
328
329 /*
330 * Normal paragraphs.
331 */
332 case para_Normal:
9057a0a8 333 case para_Copyright:
02478c4f 334 cleanup_described_thing;
7136a6c7 335 fprintf(fp, ".PP\n");
b0ea3acd 336 man_text(fp, p->words, TRUE, 0, &conf);
7136a6c7 337 break;
338
339 /*
340 * List paragraphs.
341 */
342 case para_Description:
343 case para_BiblioCited:
344 case para_Bullet:
345 case para_NumberedList:
02478c4f 346 if (p->type != para_Description)
347 cleanup_described_thing;
348
7136a6c7 349 if (p->type == para_Bullet) {
b0ea3acd 350 char *bullettext;
351 man_convert(conf.bullet, -1, &bullettext, QUOTE_QUOTES,
352 conf.charset, NULL);
353 fprintf(fp, ".IP \"\\fB%s\\fP\"\n", bullettext);
354 sfree(bullettext);
7136a6c7 355 } else if (p->type == para_NumberedList) {
356 fprintf(fp, ".IP \"");
b0ea3acd 357 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 358 fprintf(fp, "\"\n");
359 } else if (p->type == para_Description) {
02478c4f 360 if (had_described_thing) {
361 /*
362 * Do nothing; the .xP for this paragraph is the
363 * .IP which has come before it in the
364 * DescribedThing.
365 */
366 } else {
367 /*
368 * A \dd without a preceding \dt is given a blank
369 * one.
370 */
371 fprintf(fp, ".IP \"\"\n");
372 }
7136a6c7 373 } else if (p->type == para_BiblioCited) {
374 fprintf(fp, ".IP \"");
b0ea3acd 375 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 376 fprintf(fp, "\"\n");
377 }
b0ea3acd 378 man_text(fp, p->words, TRUE, 0, &conf);
02478c4f 379 had_described_thing = FALSE;
7136a6c7 380 break;
381
382 case para_DescribedThing:
02478c4f 383 cleanup_described_thing;
7136a6c7 384 fprintf(fp, ".IP \"");
b0ea3acd 385 man_text(fp, p->words, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 386 fprintf(fp, "\"\n");
02478c4f 387 had_described_thing = TRUE;
7136a6c7 388 break;
389
390 case para_Rule:
2a2375db 391 {
392 char *ruletext;
393 /*
394 * New paragraph containing a horizontal line 1/2em above
395 * the baseline, or a line of rule characters, whose
396 * length is the line length minus the current indent.
397 */
398 cleanup_described_thing;
399 man_convert(conf.rule, -1, &ruletext, 0, conf.charset, NULL);
400 fprintf(fp, ".PP\n.ie t \\u\\l'\\n(.lu-\\n(.iu'\\d\n"
401 ".el \\l'\\n(.lu-\\n(.iu\\&%s'\n", ruletext);
402 sfree(ruletext);
403 }
7136a6c7 404 break;
405
406 case para_LcontPush:
2614b01d 407 case para_QuotePush:
02478c4f 408 cleanup_described_thing;
7136a6c7 409 fprintf(fp, ".RS\n");
410 break;
411 case para_LcontPop:
2614b01d 412 case para_QuotePop:
02478c4f 413 cleanup_described_thing;
7136a6c7 414 fprintf(fp, ".RE\n");
415 break;
416 }
02478c4f 417 cleanup_described_thing;
7136a6c7 418
419 /*
420 * Tidy up.
421 */
422 fclose(fp);
4b3c5afb 423 man_conf_cleanup(conf);
7136a6c7 424}
425
426/*
93688997 427 * Convert a wide string into a string of chars; mallocs the
428 * resulting string and stores a pointer to it in `*result'.
429 *
430 * If `state' is non-NULL, updates the charset state pointed to. If
431 * `state' is NULL, this function uses its own state, initialises
432 * it from scratch, and cleans it up when finished. If `state' is
433 * non-NULL but _s_ is NULL, cleans up a provided state.
7136a6c7 434 *
435 * Return is nonzero if all characters are OK. If not all
436 * characters are OK but `result' is non-NULL, a result _will_
437 * still be generated!
438 *
93688997 439 * This function also does escaping of groff special characters.
7136a6c7 440 */
93688997 441static int man_convert(wchar_t const *s, int maxlen,
442 char **result, int quote_props,
443 int charset, charset_state *state) {
444 charset_state internal_state = CHARSET_INIT_STATE;
445 int slen, err;
446 char *p = NULL, *q;
7136a6c7 447 int plen = 0, psize = 0;
93688997 448 rdstringc out = {0, 0, NULL};
e555d8e3 449 int anyerr = 0;
7136a6c7 450
93688997 451 if (!state)
452 state = &internal_state;
453
454 slen = (s ? ustrlen(s) : 0);
455
456 if (slen > maxlen && maxlen > 0)
457 slen = maxlen;
458
459 psize = 384;
460 plen = 0;
f1530049 461 p = snewn(psize, char);
93688997 462 err = 0;
463
464 while (slen > 0) {
e555d8e3 465 int ret = charset_from_unicode(&s, &slen, p, psize,
466 charset, state, &err);
467 plen = ret;
468
469 for (q = p; q < p+plen; q++) {
470 if (q == p && (*q == '.' || *q == '\'') &&
471 (quote_props & QUOTE_INITCTRL)) {
472 /*
473 * Control character (. or ') at the start of a
474 * line. Quote it by putting \& (troff zero-width
475 * space) before it.
476 */
477 rdaddc(&out, '\\');
478 rdaddc(&out, '&');
7de1fb3b 479 } else if (*q == '`' || *q == ' ') {
480 /* Quote backticks and nonbreakable spaces always. */
e555d8e3 481 rdaddc(&out, '\\');
7de1fb3b 482 } else if (*q == '\\') {
483 /* Turn backslashes into \e. */
484 rdaddsc(&out, "\\e");
485 continue;
e579728e 486 } else if (*q == '-' && !(quote_props & QUOTE_LITHYPHENS)) {
7de1fb3b 487 /* Turn nonbreakable hyphens into \(hy. */
cc746211 488 rdaddsc(&out, "\\(hy");
489 continue;
e555d8e3 490 } else if (*q == '"' && (quote_props & QUOTE_QUOTES)) {
491 /*
492 * Double quote within double quotes. Quote it by
493 * doubling.
494 */
495 rdaddc(&out, '"');
7136a6c7 496 }
e555d8e3 497 rdaddc(&out, *q);
498 }
499 if (err) {
500 char const *tr = troffchar(*s);
501 if (tr == NULL)
502 anyerr = TRUE;
503 else
504 rdaddsc(&out, tr);
505 s++; slen--;
7136a6c7 506 }
e555d8e3 507 /* Past start of string -- no more quoting needed */
508 quote_props &= ~QUOTE_INITCTRL;
7136a6c7 509 }
93688997 510
511 if (state == &internal_state || s == NULL) {
512 int ret = charset_from_unicode(NULL, 0, p+plen, psize-plen,
513 charset, state, NULL);
514 if (ret > 0)
515 plen += ret;
7136a6c7 516 }
93688997 517
93688997 518 sfree(p);
519
520 if (out.text)
521 *result = rdtrimc(&out);
522 else
523 *result = dupstr("");
524
e555d8e3 525 return !anyerr;
7136a6c7 526}
527
6377de3d 528static int man_rdaddwc_reset(rdstringc *rs, int quote_props, manconfig *conf,
529 charset_state *state) {
530 char *c;
531
532 man_convert(NULL, 0, &c, quote_props, conf->charset, state);
533 rdaddsc(rs, c);
534 if (*c)
535 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
536 sfree(c);
537 *state = charset_init_state;
538 return quote_props;
539}
540
5ddbccdb 541static int man_rdaddctrl(rdstringc *rs, char *c, int quote_props,
542 manconfig *conf, charset_state *state) {
543 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
544 rdaddsc(rs, c);
5ddbccdb 545 return quote_props;
546}
547
a1677855 548static int man_rdaddwc(rdstringc *rs, word *text, word *end,
549 int quote_props, manconfig *conf,
550 charset_state *state) {
7136a6c7 551 char *c;
552
553 for (; text && text != end; text = text->next) switch (text->type) {
554 case word_HyperLink:
555 case word_HyperEnd:
556 case word_UpperXref:
557 case word_LowerXref:
558 case word_XrefEnd:
559 case word_IndexRef:
560 break;
561
562 case word_Normal:
563 case word_Emph:
564 case word_Code:
565 case word_WeakCode:
566 case word_WhiteSpace:
567 case word_EmphSpace:
568 case word_CodeSpace:
569 case word_WkCodeSpace:
570 case word_Quote:
571 case word_EmphQuote:
572 case word_CodeQuote:
573 case word_WkCodeQuote:
574 assert(text->type != word_CodeQuote &&
575 text->type != word_WkCodeQuote);
93688997 576
7136a6c7 577 if (towordstyle(text->type) == word_Emph &&
578 (attraux(text->aux) == attr_First ||
93688997 579 attraux(text->aux) == attr_Only)) {
5ddbccdb 580 quote_props = man_rdaddctrl(rs, "\\fI", quote_props, conf, state);
93688997 581 } else if ((towordstyle(text->type) == word_Code ||
582 towordstyle(text->type) == word_WeakCode) &&
583 (attraux(text->aux) == attr_First ||
584 attraux(text->aux) == attr_Only)) {
5ddbccdb 585 quote_props = man_rdaddctrl(rs, "\\fB", quote_props, conf, state);
93688997 586 }
587
e579728e 588 if (towordstyle(text->type) == word_Code ||
589 towordstyle(text->type) == word_WeakCode)
590 quote_props |= QUOTE_LITHYPHENS;
591
7136a6c7 592 if (removeattr(text->type) == word_Normal) {
93688997 593 charset_state s2 = *state;
cc746211 594 int len = ustrlen(text->text), hyphen = FALSE;
93688997 595
cc746211 596 if (text->breaks && text->text[len - 1] == '-') {
597 len--;
598 hyphen = TRUE;
599 }
600 if (len == 0 ||
601 man_convert(text->text, len, &c, quote_props, conf->charset,
602 &s2) ||
93688997 603 !text->alt) {
cc746211 604 if (len != 0) {
605 rdaddsc(rs, c);
606 if (*c)
607 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
608 *state = s2;
609 }
2e78832e 610 if (hyphen) {
6377de3d 611 quote_props =
5ddbccdb 612 man_rdaddctrl(rs, "-", quote_props, conf, state);
2e78832e 613 quote_props &= ~QUOTE_INITCTRL;
614 }
93688997 615 } else {
a1677855 616 quote_props = man_rdaddwc(rs, text->alt, NULL,
617 quote_props, conf, state);
93688997 618 }
cc746211 619 if (len != 0)
620 sfree(c);
7136a6c7 621 } else if (removeattr(text->type) == word_WhiteSpace) {
5ddbccdb 622 quote_props = man_rdaddctrl(rs, " ", quote_props, conf, state);
2e78832e 623 quote_props &= ~QUOTE_INITCTRL;
7136a6c7 624 } else if (removeattr(text->type) == word_Quote) {
b0ea3acd 625 man_convert(quoteaux(text->aux) == quote_Open ?
626 conf->lquote : conf->rquote, 0,
627 &c, quote_props, conf->charset, state);
93688997 628 rdaddsc(rs, c);
a1677855 629 if (*c)
630 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
93688997 631 sfree(c);
7136a6c7 632 }
93688997 633 if (towordstyle(text->type) != word_Normal &&
7136a6c7 634 (attraux(text->aux) == attr_Last ||
93688997 635 attraux(text->aux) == attr_Only)) {
5ddbccdb 636 quote_props = man_rdaddctrl(rs, "\\fP", quote_props, conf, state);
93688997 637 }
7136a6c7 638 break;
639 }
6377de3d 640 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
a1677855 641
642 return quote_props;
7136a6c7 643}
644
93688997 645static void man_text(FILE *fp, word *text, int newline,
b0ea3acd 646 int quote_props, manconfig *conf) {
7136a6c7 647 rdstringc t = { 0, 0, NULL };
93688997 648 charset_state state = CHARSET_INIT_STATE;
7136a6c7 649
b0ea3acd 650 man_rdaddwc(&t, text, NULL, quote_props | QUOTE_INITCTRL, conf, &state);
7136a6c7 651 fprintf(fp, "%s", t.text);
652 sfree(t.text);
653 if (newline)
654 fputc('\n', fp);
655}
656
93688997 657static void man_codepara(FILE *fp, word *text, int charset) {
7136a6c7 658 fprintf(fp, ".nf\n");
659 for (; text; text = text->next) if (text->type == word_WeakCode) {
660 char *c;
4b3c5afb 661 wchar_t *t, *e;
e579728e 662 int quote_props = QUOTE_INITCTRL | QUOTE_LITHYPHENS;
4b3c5afb 663
664 t = text->text;
665 if (text->next && text->next->type == word_Emph) {
666 e = text->next->text;
667 text = text->next;
668 } else
669 e = NULL;
670
671 while (e && *e && *t) {
672 int n;
673 int ec = *e;
674
675 for (n = 0; t[n] && e[n] && e[n] == ec; n++);
676 if (ec == 'i')
677 fprintf(fp, "\\fI");
678 else if (ec == 'b')
679 fprintf(fp, "\\fB");
93688997 680 man_convert(t, n, &c, quote_props, charset, NULL);
4b3c5afb 681 quote_props &= ~QUOTE_INITCTRL;
682 fprintf(fp, "%s", c);
683 sfree(c);
684 if (ec == 'i' || ec == 'b')
685 fprintf(fp, "\\fP");
686 t += n;
687 e += n;
688 }
93688997 689 man_convert(t, 0, &c, quote_props, charset, NULL);
7136a6c7 690 fprintf(fp, "%s\n", c);
691 sfree(c);
692 }
693 fprintf(fp, ".fi\n");
694}