Pull the code to reset the output charset state out of man_rdaddwc() into
[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
7136a6c7 218#define QUOTE_INITCTRL 1 /* quote initial . and ' on a line */
219#define QUOTE_QUOTES 2 /* quote double quotes by doubling them */
220
221void man_backend(paragraph *sourceform, keywordlist *keywords,
43341922 222 indexdata *idx, void *unused) {
7136a6c7 223 paragraph *p;
224 FILE *fp;
4b3c5afb 225 manconfig conf;
02478c4f 226 int had_described_thing;
7136a6c7 227
43341922 228 IGNORE(unused);
229 IGNORE(keywords);
230 IGNORE(idx);
7136a6c7 231
4b3c5afb 232 conf = man_configure(sourceform);
233
7136a6c7 234 /*
50d6b4bd 235 * Open the output file.
7136a6c7 236 */
50d6b4bd 237 fp = fopen(conf.filename, "w");
7136a6c7 238 if (!fp) {
50d6b4bd 239 error(err_cantopenw, conf.filename);
7136a6c7 240 return;
241 }
242
243 /* Do the version ID */
244 for (p = sourceform; p; p = p->next)
245 if (p->type == para_VersionID) {
246 fprintf(fp, ".\\\" ");
b0ea3acd 247 man_text(fp, p->words, TRUE, 0, &conf);
7136a6c7 248 }
249
4b3c5afb 250 /* .TH name-of-program manual-section */
22905f72 251 fprintf(fp, ".TH");
252 if (conf.th && *conf.th) {
4b3c5afb 253 char *c;
22905f72 254 wchar_t *wp;
255
256 for (wp = conf.th; *wp; wp = uadv(wp)) {
257 fputs(" \"", fp);
93688997 258 man_convert(wp, 0, &c, QUOTE_QUOTES, conf.charset, NULL);
22905f72 259 fputs(c, fp);
260 sfree(c);
261 fputc('"', fp);
4b3c5afb 262 }
263 }
22905f72 264 fputc('\n', fp);
7136a6c7 265
02478c4f 266 had_described_thing = FALSE;
267#define cleanup_described_thing do { \
268 if (had_described_thing) \
269 fprintf(fp, "\n"); \
270 had_described_thing = FALSE; \
271} while (0)
272
7136a6c7 273 for (p = sourceform; p; p = p->next) switch (p->type) {
274 /*
275 * Things we ignore because we've already processed them or
276 * aren't going to touch them in this pass.
277 */
278 case para_IM:
279 case para_BR:
280 case para_Biblio: /* only touch BiblioCited */
281 case para_VersionID:
7136a6c7 282 case para_NoCite:
283 case para_Title:
284 break;
285
286 /*
287 * Headings.
288 */
289 case para_Chapter:
290 case para_Appendix:
291 case para_UnnumberedChapter:
292 case para_Heading:
293 case para_Subsect:
8902e0ed 294
02478c4f 295 cleanup_described_thing;
4b3c5afb 296 {
297 int depth;
298 if (p->type == para_Subsect)
e4f8c48e 299 depth = p->aux + 1;
4b3c5afb 300 else if (p->type == para_Heading)
301 depth = 1;
302 else
303 depth = 0;
304 if (depth >= conf.mindepth) {
4118fc81 305 if (depth > conf.mindepth)
306 fprintf(fp, ".SS \"");
307 else
308 fprintf(fp, ".SH \"");
4b3c5afb 309 if (conf.headnumbers && p->kwtext) {
b0ea3acd 310 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
4b3c5afb 311 fprintf(fp, " ");
312 }
b0ea3acd 313 man_text(fp, p->words, FALSE, QUOTE_QUOTES, &conf);
4b3c5afb 314 fprintf(fp, "\"\n");
315 }
316 break;
317 }
7136a6c7 318
319 /*
320 * Code paragraphs.
321 */
322 case para_Code:
02478c4f 323 cleanup_described_thing;
7136a6c7 324 fprintf(fp, ".PP\n");
93688997 325 man_codepara(fp, p->words, conf.charset);
7136a6c7 326 break;
327
328 /*
329 * Normal paragraphs.
330 */
331 case para_Normal:
9057a0a8 332 case para_Copyright:
02478c4f 333 cleanup_described_thing;
7136a6c7 334 fprintf(fp, ".PP\n");
b0ea3acd 335 man_text(fp, p->words, TRUE, 0, &conf);
7136a6c7 336 break;
337
338 /*
339 * List paragraphs.
340 */
341 case para_Description:
342 case para_BiblioCited:
343 case para_Bullet:
344 case para_NumberedList:
02478c4f 345 if (p->type != para_Description)
346 cleanup_described_thing;
347
7136a6c7 348 if (p->type == para_Bullet) {
b0ea3acd 349 char *bullettext;
350 man_convert(conf.bullet, -1, &bullettext, QUOTE_QUOTES,
351 conf.charset, NULL);
352 fprintf(fp, ".IP \"\\fB%s\\fP\"\n", bullettext);
353 sfree(bullettext);
7136a6c7 354 } else if (p->type == para_NumberedList) {
355 fprintf(fp, ".IP \"");
b0ea3acd 356 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 357 fprintf(fp, "\"\n");
358 } else if (p->type == para_Description) {
02478c4f 359 if (had_described_thing) {
360 /*
361 * Do nothing; the .xP for this paragraph is the
362 * .IP which has come before it in the
363 * DescribedThing.
364 */
365 } else {
366 /*
367 * A \dd without a preceding \dt is given a blank
368 * one.
369 */
370 fprintf(fp, ".IP \"\"\n");
371 }
7136a6c7 372 } else if (p->type == para_BiblioCited) {
373 fprintf(fp, ".IP \"");
b0ea3acd 374 man_text(fp, p->kwtext, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 375 fprintf(fp, "\"\n");
376 }
b0ea3acd 377 man_text(fp, p->words, TRUE, 0, &conf);
02478c4f 378 had_described_thing = FALSE;
7136a6c7 379 break;
380
381 case para_DescribedThing:
02478c4f 382 cleanup_described_thing;
7136a6c7 383 fprintf(fp, ".IP \"");
b0ea3acd 384 man_text(fp, p->words, FALSE, QUOTE_QUOTES, &conf);
7136a6c7 385 fprintf(fp, "\"\n");
02478c4f 386 had_described_thing = TRUE;
7136a6c7 387 break;
388
389 case para_Rule:
2a2375db 390 {
391 char *ruletext;
392 /*
393 * New paragraph containing a horizontal line 1/2em above
394 * the baseline, or a line of rule characters, whose
395 * length is the line length minus the current indent.
396 */
397 cleanup_described_thing;
398 man_convert(conf.rule, -1, &ruletext, 0, conf.charset, NULL);
399 fprintf(fp, ".PP\n.ie t \\u\\l'\\n(.lu-\\n(.iu'\\d\n"
400 ".el \\l'\\n(.lu-\\n(.iu\\&%s'\n", ruletext);
401 sfree(ruletext);
402 }
7136a6c7 403 break;
404
405 case para_LcontPush:
2614b01d 406 case para_QuotePush:
02478c4f 407 cleanup_described_thing;
7136a6c7 408 fprintf(fp, ".RS\n");
409 break;
410 case para_LcontPop:
2614b01d 411 case para_QuotePop:
02478c4f 412 cleanup_described_thing;
7136a6c7 413 fprintf(fp, ".RE\n");
414 break;
415 }
02478c4f 416 cleanup_described_thing;
7136a6c7 417
418 /*
419 * Tidy up.
420 */
421 fclose(fp);
4b3c5afb 422 man_conf_cleanup(conf);
7136a6c7 423}
424
425/*
93688997 426 * Convert a wide string into a string of chars; mallocs the
427 * resulting string and stores a pointer to it in `*result'.
428 *
429 * If `state' is non-NULL, updates the charset state pointed to. If
430 * `state' is NULL, this function uses its own state, initialises
431 * it from scratch, and cleans it up when finished. If `state' is
432 * non-NULL but _s_ is NULL, cleans up a provided state.
7136a6c7 433 *
434 * Return is nonzero if all characters are OK. If not all
435 * characters are OK but `result' is non-NULL, a result _will_
436 * still be generated!
437 *
93688997 438 * This function also does escaping of groff special characters.
7136a6c7 439 */
93688997 440static int man_convert(wchar_t const *s, int maxlen,
441 char **result, int quote_props,
442 int charset, charset_state *state) {
443 charset_state internal_state = CHARSET_INIT_STATE;
444 int slen, err;
445 char *p = NULL, *q;
7136a6c7 446 int plen = 0, psize = 0;
93688997 447 rdstringc out = {0, 0, NULL};
e555d8e3 448 int anyerr = 0;
7136a6c7 449
93688997 450 if (!state)
451 state = &internal_state;
452
453 slen = (s ? ustrlen(s) : 0);
454
455 if (slen > maxlen && maxlen > 0)
456 slen = maxlen;
457
458 psize = 384;
459 plen = 0;
f1530049 460 p = snewn(psize, char);
93688997 461 err = 0;
462
463 while (slen > 0) {
e555d8e3 464 int ret = charset_from_unicode(&s, &slen, p, psize,
465 charset, state, &err);
466 plen = ret;
467
468 for (q = p; q < p+plen; q++) {
469 if (q == p && (*q == '.' || *q == '\'') &&
470 (quote_props & QUOTE_INITCTRL)) {
471 /*
472 * Control character (. or ') at the start of a
473 * line. Quote it by putting \& (troff zero-width
474 * space) before it.
475 */
476 rdaddc(&out, '\\');
477 rdaddc(&out, '&');
7de1fb3b 478 } else if (*q == '`' || *q == ' ') {
479 /* Quote backticks and nonbreakable spaces always. */
e555d8e3 480 rdaddc(&out, '\\');
7de1fb3b 481 } else if (*q == '\\') {
482 /* Turn backslashes into \e. */
483 rdaddsc(&out, "\\e");
484 continue;
cc746211 485 } else if (*q == '-') {
7de1fb3b 486 /* Turn nonbreakable hyphens into \(hy. */
cc746211 487 rdaddsc(&out, "\\(hy");
488 continue;
e555d8e3 489 } else if (*q == '"' && (quote_props & QUOTE_QUOTES)) {
490 /*
491 * Double quote within double quotes. Quote it by
492 * doubling.
493 */
494 rdaddc(&out, '"');
7136a6c7 495 }
e555d8e3 496 rdaddc(&out, *q);
497 }
498 if (err) {
499 char const *tr = troffchar(*s);
500 if (tr == NULL)
501 anyerr = TRUE;
502 else
503 rdaddsc(&out, tr);
504 s++; slen--;
7136a6c7 505 }
e555d8e3 506 /* Past start of string -- no more quoting needed */
507 quote_props &= ~QUOTE_INITCTRL;
7136a6c7 508 }
93688997 509
510 if (state == &internal_state || s == NULL) {
511 int ret = charset_from_unicode(NULL, 0, p+plen, psize-plen,
512 charset, state, NULL);
513 if (ret > 0)
514 plen += ret;
7136a6c7 515 }
93688997 516
93688997 517 sfree(p);
518
519 if (out.text)
520 *result = rdtrimc(&out);
521 else
522 *result = dupstr("");
523
e555d8e3 524 return !anyerr;
7136a6c7 525}
526
6377de3d 527static int man_rdaddwc_reset(rdstringc *rs, int quote_props, manconfig *conf,
528 charset_state *state) {
529 char *c;
530
531 man_convert(NULL, 0, &c, quote_props, conf->charset, state);
532 rdaddsc(rs, c);
533 if (*c)
534 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
535 sfree(c);
536 *state = charset_init_state;
537 return quote_props;
538}
539
a1677855 540static int man_rdaddwc(rdstringc *rs, word *text, word *end,
541 int quote_props, manconfig *conf,
542 charset_state *state) {
7136a6c7 543 char *c;
544
545 for (; text && text != end; text = text->next) switch (text->type) {
546 case word_HyperLink:
547 case word_HyperEnd:
548 case word_UpperXref:
549 case word_LowerXref:
550 case word_XrefEnd:
551 case word_IndexRef:
552 break;
553
554 case word_Normal:
555 case word_Emph:
556 case word_Code:
557 case word_WeakCode:
558 case word_WhiteSpace:
559 case word_EmphSpace:
560 case word_CodeSpace:
561 case word_WkCodeSpace:
562 case word_Quote:
563 case word_EmphQuote:
564 case word_CodeQuote:
565 case word_WkCodeQuote:
566 assert(text->type != word_CodeQuote &&
567 text->type != word_WkCodeQuote);
93688997 568
7136a6c7 569 if (towordstyle(text->type) == word_Emph &&
570 (attraux(text->aux) == attr_First ||
93688997 571 attraux(text->aux) == attr_Only)) {
6377de3d 572 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
7136a6c7 573 rdaddsc(rs, "\\fI");
93688997 574 } else if ((towordstyle(text->type) == word_Code ||
575 towordstyle(text->type) == word_WeakCode) &&
576 (attraux(text->aux) == attr_First ||
577 attraux(text->aux) == attr_Only)) {
6377de3d 578 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
7136a6c7 579 rdaddsc(rs, "\\fB");
93688997 580 }
581
7136a6c7 582 if (removeattr(text->type) == word_Normal) {
93688997 583 charset_state s2 = *state;
cc746211 584 int len = ustrlen(text->text), hyphen = FALSE;
93688997 585
cc746211 586 if (text->breaks && text->text[len - 1] == '-') {
587 len--;
588 hyphen = TRUE;
589 }
590 if (len == 0 ||
591 man_convert(text->text, len, &c, quote_props, conf->charset,
592 &s2) ||
93688997 593 !text->alt) {
cc746211 594 if (len != 0) {
595 rdaddsc(rs, c);
596 if (*c)
597 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
598 *state = s2;
599 }
600 if (hyphen) {
6377de3d 601 quote_props =
602 man_rdaddwc_reset(rs, quote_props, conf, state);
cc746211 603 rdaddc(rs, '-');
a1677855 604 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
cc746211 605 }
93688997 606 } else {
a1677855 607 quote_props = man_rdaddwc(rs, text->alt, NULL,
608 quote_props, conf, state);
93688997 609 }
cc746211 610 if (len != 0)
611 sfree(c);
7136a6c7 612 } else if (removeattr(text->type) == word_WhiteSpace) {
6377de3d 613 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
afb180e1 614 rdaddc(rs, ' ');
615 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
7136a6c7 616 } else if (removeattr(text->type) == word_Quote) {
b0ea3acd 617 man_convert(quoteaux(text->aux) == quote_Open ?
618 conf->lquote : conf->rquote, 0,
619 &c, quote_props, conf->charset, state);
93688997 620 rdaddsc(rs, c);
a1677855 621 if (*c)
622 quote_props &= ~QUOTE_INITCTRL; /* not at start any more */
93688997 623 sfree(c);
7136a6c7 624 }
93688997 625 if (towordstyle(text->type) != word_Normal &&
7136a6c7 626 (attraux(text->aux) == attr_Last ||
93688997 627 attraux(text->aux) == attr_Only)) {
6377de3d 628 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
7136a6c7 629 rdaddsc(rs, "\\fP");
93688997 630 }
7136a6c7 631 break;
632 }
6377de3d 633 quote_props = man_rdaddwc_reset(rs, quote_props, conf, state);
a1677855 634
635 return quote_props;
7136a6c7 636}
637
93688997 638static void man_text(FILE *fp, word *text, int newline,
b0ea3acd 639 int quote_props, manconfig *conf) {
7136a6c7 640 rdstringc t = { 0, 0, NULL };
93688997 641 charset_state state = CHARSET_INIT_STATE;
7136a6c7 642
b0ea3acd 643 man_rdaddwc(&t, text, NULL, quote_props | QUOTE_INITCTRL, conf, &state);
7136a6c7 644 fprintf(fp, "%s", t.text);
645 sfree(t.text);
646 if (newline)
647 fputc('\n', fp);
648}
649
93688997 650static void man_codepara(FILE *fp, word *text, int charset) {
7136a6c7 651 fprintf(fp, ".nf\n");
652 for (; text; text = text->next) if (text->type == word_WeakCode) {
653 char *c;
4b3c5afb 654 wchar_t *t, *e;
655 int quote_props = QUOTE_INITCTRL;
656
657 t = text->text;
658 if (text->next && text->next->type == word_Emph) {
659 e = text->next->text;
660 text = text->next;
661 } else
662 e = NULL;
663
664 while (e && *e && *t) {
665 int n;
666 int ec = *e;
667
668 for (n = 0; t[n] && e[n] && e[n] == ec; n++);
669 if (ec == 'i')
670 fprintf(fp, "\\fI");
671 else if (ec == 'b')
672 fprintf(fp, "\\fB");
93688997 673 man_convert(t, n, &c, quote_props, charset, NULL);
4b3c5afb 674 quote_props &= ~QUOTE_INITCTRL;
675 fprintf(fp, "%s", c);
676 sfree(c);
677 if (ec == 'i' || ec == 'b')
678 fprintf(fp, "\\fP");
679 t += n;
680 e += n;
681 }
93688997 682 man_convert(t, 0, &c, quote_props, charset, NULL);
7136a6c7 683 fprintf(fp, "%s\n", c);
684 sfree(c);
685 }
686 fprintf(fp, ".fi\n");
687}