=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.58 retrieving revision 1.69 diff -u -p -r1.58 -r1.69 --- mandoc/term.c 2009/03/13 07:46:10 1.58 +++ mandoc/term.c 2009/03/23 09:42:43 1.69 @@ -1,6 +1,6 @@ -/* $Id: term.c,v 1.58 2009/03/13 07:46:10 kristaps Exp $ */ +/* $Id: term.c,v 1.69 2009/03/23 09:42:43 kristaps Exp $ */ /* - * Copyright (c) 2009 Kristaps Dzonsons + * Copyright (c) 2008, 2009 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the @@ -55,8 +55,9 @@ #define TTYPE_DIAG 18 #define TTYPE_LINK_ANCHOR 19 #define TTYPE_LINK_TEXT 20 -#define TTYPE_REF_TITLE 21 -#define TTYPE_NMAX 22 +#define TTYPE_REF_JOURNAL 21 +#define TTYPE_LIST 22 +#define TTYPE_NMAX 23 /* * These define "styles" for element types, like command arguments or @@ -67,28 +68,29 @@ /* TODO: abstract this into mdocterm.c. */ const int ttypes[TTYPE_NMAX] = { - TERMP_BOLD, /* TTYPE_PROG */ + TERMP_BOLD, /* TTYPE_PROG */ TERMP_BOLD, /* TTYPE_CMD_FLAG */ - TERMP_UNDERLINE, /* TTYPE_CMD_ARG */ + TERMP_UNDER, /* TTYPE_CMD_ARG */ TERMP_BOLD, /* TTYPE_SECTION */ TERMP_BOLD, /* TTYPE_FUNC_DECL */ - TERMP_UNDERLINE, /* TTYPE_VAR_DECL */ - TERMP_UNDERLINE, /* TTYPE_FUNC_TYPE */ + TERMP_UNDER, /* TTYPE_VAR_DECL */ + TERMP_UNDER, /* TTYPE_FUNC_TYPE */ TERMP_BOLD, /* TTYPE_FUNC_NAME */ - TERMP_UNDERLINE, /* TTYPE_FUNC_ARG */ - TERMP_UNDERLINE, /* TTYPE_LINK */ + TERMP_UNDER, /* TTYPE_FUNC_ARG */ + TERMP_UNDER, /* TTYPE_LINK */ TERMP_BOLD, /* TTYPE_SSECTION */ - TERMP_UNDERLINE, /* TTYPE_FILE */ - TERMP_UNDERLINE, /* TTYPE_EMPH */ + TERMP_UNDER, /* TTYPE_FILE */ + TERMP_UNDER, /* TTYPE_EMPH */ TERMP_BOLD, /* TTYPE_CONFIG */ TERMP_BOLD, /* TTYPE_CMD */ TERMP_BOLD, /* TTYPE_INCLUDE */ TERMP_BOLD, /* TTYPE_SYMB */ TERMP_BOLD, /* TTYPE_SYMBOL */ TERMP_BOLD, /* TTYPE_DIAG */ - TERMP_UNDERLINE, /* TTYPE_LINK_ANCHOR */ + TERMP_UNDER, /* TTYPE_LINK_ANCHOR */ TERMP_BOLD, /* TTYPE_LINK_TEXT */ - TERMP_UNDERLINE /* TTYPE_REF_TITLE */ + TERMP_UNDER, /* TTYPE_REF_JOURNAL */ + TERMP_BOLD /* TTYPE_LIST */ }; static int arg_hasattr(int, const struct mdoc_node *); @@ -98,6 +100,9 @@ static int arg_getattr(int, const struct mdoc_node static size_t arg_offset(const struct mdoc_argv *); static size_t arg_width(const struct mdoc_argv *, int); static int arg_listtype(const struct mdoc_node *); +static int fmt_block_vspace(struct termp *, + const struct mdoc_node *, + const struct mdoc_node *); /* * What follows describes prefix and postfix operations for the abstract @@ -118,6 +123,7 @@ static void name##_post(DECL_ARGS) DECL_PRE(name); \ DECL_POST(name); +DECL_PREPOST(termp__t); DECL_PREPOST(termp_aq); DECL_PREPOST(termp_bd); DECL_PREPOST(termp_bq); @@ -140,7 +146,7 @@ DECL_PREPOST(termp_ss); DECL_PREPOST(termp_sq); DECL_PREPOST(termp_vt); -DECL_PRE(termp__t); +DECL_PRE(termp__j); DECL_PRE(termp_ap); DECL_PRE(termp_ar); DECL_PRE(termp_at); @@ -149,6 +155,7 @@ DECL_PRE(termp_bsx); DECL_PRE(termp_bt); DECL_PRE(termp_cd); DECL_PRE(termp_cm); +DECL_PRE(termp_dx); DECL_PRE(termp_em); DECL_PRE(termp_ex); DECL_PRE(termp_fa); @@ -226,12 +233,12 @@ const struct termact __termacts[MDOC_MAX] = { { NULL, termp____post }, /* %B */ { NULL, termp____post }, /* %D */ { NULL, termp____post }, /* %I */ - { NULL, termp____post }, /* %J */ + { termp__j_pre, termp____post }, /* %J */ { NULL, termp____post }, /* %N */ { NULL, termp____post }, /* %O */ { NULL, termp____post }, /* %P */ { NULL, termp____post }, /* %R */ - { termp__t_pre, termp____post }, /* %T */ + { termp__t_pre, termp__t_post }, /* %T */ { NULL, termp____post }, /* %V */ { NULL, NULL }, /* Ac */ { termp_aq_pre, termp_aq_post }, /* Ao */ @@ -296,6 +303,10 @@ const struct termact __termacts[MDOC_MAX] = { { termp_brq_pre, termp_brq_post }, /* Bro */ { NULL, NULL }, /* Brc */ { NULL, NULL }, /* %C */ + { NULL, NULL }, /* Es */ + { NULL, NULL }, /* En */ + { termp_dx_pre, NULL }, /* Dx */ + { NULL, NULL }, /* %Q */ }; const struct termact *termacts = __termacts; @@ -314,8 +325,8 @@ arg_width(const struct mdoc_argv *arg, int pos) if (0 == strcmp(arg->value[pos], "indent-two")) return(INDENT * 2); - len = (int)strlen(arg->value[pos]); - assert(len > 0); + if (0 == (len = (int)strlen(arg->value[pos]))) + return(0); for (i = 0; i < len - 1; i++) if ( ! isdigit((u_char)arg->value[pos][i])) @@ -424,43 +435,58 @@ arg_getattrs(const int *keys, int *vals, /* ARGSUSED */ static int -termp_dq_pre(DECL_ARGS) +fmt_block_vspace(struct termp *p, + const struct mdoc_node *bl, + const struct mdoc_node *node) { + const struct mdoc_node *n; - if (MDOC_BODY != node->type) + term_newln(p); + + if (arg_hasattr(MDOC_Compact, bl)) return(1); - word(p, "\\(lq"); - p->flags |= TERMP_NOSPACE; + for (n = node; n; n = n->parent) { + if (MDOC_BLOCK != n->type) + continue; + if (MDOC_Ss == n->tok) + break; + if (MDOC_Sh == n->tok) + break; + if (NULL == n->prev) + continue; + term_vspace(p); + break; + } + return(1); } /* ARGSUSED */ -static void -termp_dq_post(DECL_ARGS) +static int +termp_dq_pre(DECL_ARGS) { if (MDOC_BODY != node->type) - return; + return(1); + term_word(p, "\\(lq"); p->flags |= TERMP_NOSPACE; - word(p, "\\(rq"); + return(1); } /* ARGSUSED */ -static int -termp_it_pre_block(DECL_ARGS) +static void +termp_dq_post(DECL_ARGS) { - newln(p); - if ( ! arg_hasattr(MDOC_Compact, node->parent->parent)) - /* FIXME: parent->parent->parent? */ - if (node->prev || node->parent->parent->prev) - vspace(p); + if (MDOC_BODY != node->type) + return; - return(1); + p->flags |= TERMP_NOSPACE; + term_word(p, "\\(rq"); } @@ -474,7 +500,7 @@ termp_it_pre(DECL_ARGS) size_t width, offset; if (MDOC_BLOCK == node->type) - return(termp_it_pre_block(p, pair, meta, node)); + return(fmt_block_vspace(p, node->parent->parent, node)); bl = node->parent->parent->parent; @@ -660,18 +686,18 @@ termp_it_pre(DECL_ARGS) if (MDOC_HEAD == node->type) switch (type) { case (MDOC_Bullet): - word(p, "\\[bu]"); + term_word(p, "\\[bu]"); break; case (MDOC_Dash): /* FALLTHROUGH */ case (MDOC_Hyphen): - word(p, "\\-"); + term_word(p, "\\-"); break; case (MDOC_Enum): (pair->ppair->ppair->count)++; (void)snprintf(buf, sizeof(buf), "%d.", pair->ppair->ppair->count); - word(p, buf); + term_word(p, buf); break; default: break; @@ -724,14 +750,14 @@ termp_it_post(DECL_ARGS) /* FALLTHROUGH */ case (MDOC_Inset): if (MDOC_BODY == node->type) - flushln(p); + term_flushln(p); break; case (MDOC_Column): if (MDOC_HEAD == node->type) - flushln(p); + term_flushln(p); break; default: - flushln(p); + term_flushln(p); break; } @@ -747,11 +773,11 @@ termp_nm_pre(DECL_ARGS) { if (SEC_SYNOPSIS == node->sec) - newln(p); + term_newln(p); TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_PROG]); if (NULL == node->child) - word(p, meta->name); + term_word(p, meta->name); return(1); } @@ -763,7 +789,7 @@ termp_fl_pre(DECL_ARGS) { TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CMD_FLAG]); - word(p, "\\-"); + term_word(p, "\\-"); p->flags |= TERMP_NOSPACE; return(1); } @@ -794,7 +820,7 @@ static int termp_pp_pre(DECL_ARGS) { - vspace(p); + term_vspace(p); return(1); } @@ -806,7 +832,7 @@ termp_st_pre(DECL_ARGS) const char *cp; if (node->child && (cp = mdoc_a2st(node->child->string))) - word(p, cp); + term_word(p, cp); return(0); } @@ -817,7 +843,7 @@ termp_rs_pre(DECL_ARGS) { if (MDOC_BLOCK == node->type && node->prev) - vspace(p); + term_vspace(p); return(1); } @@ -833,23 +859,23 @@ termp_rv_pre(DECL_ARGS) if (1 != node->args->argv[i].sz) errx(1, "expected -std argument"); - newln(p); - word(p, "The"); + term_newln(p); + term_word(p, "The"); p->flags |= ttypes[TTYPE_FUNC_NAME]; - word(p, *node->args->argv[i].value); + term_word(p, *node->args->argv[i].value); p->flags &= ~ttypes[TTYPE_FUNC_NAME]; p->flags |= TERMP_NOSPACE; - word(p, "() function returns the value 0 if successful;"); - word(p, "otherwise the value -1 is returned and the"); - word(p, "global variable"); + term_word(p, "() function returns the value 0 if successful;"); + term_word(p, "otherwise the value -1 is returned and the"); + term_word(p, "global variable"); p->flags |= ttypes[TTYPE_VAR_DECL]; - word(p, "errno"); + term_word(p, "errno"); p->flags &= ~ttypes[TTYPE_VAR_DECL]; - word(p, "is set to indicate the error."); + term_word(p, "is set to indicate the error."); return(1); } @@ -866,11 +892,11 @@ termp_ex_pre(DECL_ARGS) if (1 != node->args->argv[i].sz) errx(1, "expected -std argument"); - word(p, "The"); + term_word(p, "The"); p->flags |= ttypes[TTYPE_PROG]; - word(p, *node->args->argv[i].value); + term_word(p, *node->args->argv[i].value); p->flags &= ~ttypes[TTYPE_PROG]; - word(p, "utility exits 0 on success, and >0 if an error occurs."); + term_word(p, "utility exits 0 on success, and >0 if an error occurs."); return(1); } @@ -881,7 +907,7 @@ static int termp_nd_pre(DECL_ARGS) { - word(p, "\\-"); + term_word(p, "\\-"); return(1); } @@ -892,7 +918,7 @@ termp_bl_post(DECL_ARGS) { if (MDOC_BLOCK == node->type) - newln(p); + term_newln(p); } @@ -904,7 +930,7 @@ termp_op_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\\(rB"); + term_word(p, "\\(rB"); } @@ -916,15 +942,15 @@ termp_xr_pre(DECL_ARGS) if (NULL == (n = node->child)) errx(1, "expected text line argument"); - word(p, n->string); + term_word(p, n->string); if (NULL == (n = n->next)) return(0); p->flags |= TERMP_NOSPACE; - word(p, "("); + term_word(p, "("); p->flags |= TERMP_NOSPACE; - word(p, n->string); + term_word(p, n->string); p->flags |= TERMP_NOSPACE; - word(p, ")"); + term_word(p, ")"); return(0); } @@ -946,7 +972,7 @@ termp_vt_post(DECL_ARGS) { if (node->sec == SEC_SYNOPSIS) - vspace(p); + term_vspace(p); } @@ -971,9 +997,9 @@ termp_fd_post(DECL_ARGS) if (node->sec != SEC_SYNOPSIS) return; - newln(p); + term_newln(p); if (node->next && MDOC_Fd != node->next->tok) - vspace(p); + term_vspace(p); } @@ -984,7 +1010,7 @@ termp_sh_pre(DECL_ARGS) switch (node->type) { case (MDOC_HEAD): - vspace(p); + term_vspace(p); TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SECTION]); break; case (MDOC_BODY): @@ -1004,10 +1030,10 @@ termp_sh_post(DECL_ARGS) switch (node->type) { case (MDOC_HEAD): - newln(p); + term_newln(p); break; case (MDOC_BODY): - newln(p); + term_newln(p); p->offset = 0; break; default: @@ -1023,7 +1049,7 @@ termp_op_pre(DECL_ARGS) switch (node->type) { case (MDOC_BODY): - word(p, "\\(lB"); + term_word(p, "\\(lB"); p->flags |= TERMP_NOSPACE; break; default: @@ -1038,7 +1064,7 @@ static int termp_bt_pre(DECL_ARGS) { - word(p, "is currently in beta test."); + term_word(p, "is currently in beta test."); return(1); } @@ -1052,10 +1078,10 @@ termp_lb_pre(DECL_ARGS) if (NULL == node->child) errx(1, "expected text line argument"); if ((lb = mdoc_a2lib(node->child->string))) { - word(p, lb); + term_word(p, lb); return(0); } - word(p, "library"); + term_word(p, "library"); return(1); } @@ -1065,7 +1091,7 @@ static void termp_lb_post(DECL_ARGS) { - newln(p); + term_newln(p); } @@ -1074,7 +1100,7 @@ static int termp_ud_pre(DECL_ARGS) { - word(p, "currently under development."); + term_word(p, "currently under development."); return(1); } @@ -1086,7 +1112,7 @@ termp_d1_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - newln(p); + term_newln(p); p->offset += (pair->offset = INDENT); return(1); } @@ -1099,7 +1125,7 @@ termp_d1_post(DECL_ARGS) if (MDOC_BODY != node->type) return; - newln(p); + term_newln(p); p->offset -= pair->offset; } @@ -1111,7 +1137,7 @@ termp_aq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\\(la"); + term_word(p, "\\(la"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1125,7 +1151,7 @@ termp_aq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\\(ra"); + term_word(p, "\\(ra"); } @@ -1136,7 +1162,7 @@ termp_ft_pre(DECL_ARGS) if (SEC_SYNOPSIS == node->sec) if (node->prev && MDOC_Fo == node->prev->tok) - vspace(p); + term_vspace(p); TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]); return(1); } @@ -1148,7 +1174,7 @@ termp_ft_post(DECL_ARGS) { if (SEC_SYNOPSIS == node->sec) - newln(p); + term_newln(p); } @@ -1164,24 +1190,24 @@ termp_fn_pre(DECL_ARGS) /* FIXME: can be "type funcname" "type varname"... */ p->flags |= ttypes[TTYPE_FUNC_NAME]; - word(p, node->child->string); + term_word(p, node->child->string); p->flags &= ~ttypes[TTYPE_FUNC_NAME]; - word(p, "("); - p->flags |= TERMP_NOSPACE; + term_word(p, "("); + for (n = node->child->next; n; n = n->next) { p->flags |= ttypes[TTYPE_FUNC_ARG]; - word(p, n->string); + term_word(p, n->string); p->flags &= ~ttypes[TTYPE_FUNC_ARG]; if (n->next) - word(p, ","); + term_word(p, ","); } - word(p, ")"); + term_word(p, ")"); if (SEC_SYNOPSIS == node->sec) - word(p, ";"); + term_word(p, ";"); return(0); } @@ -1193,7 +1219,7 @@ termp_fn_post(DECL_ARGS) { if (node->sec == SEC_SYNOPSIS && node->next) - vspace(p); + term_vspace(p); } @@ -1221,14 +1247,14 @@ termp_fa_pre(DECL_ARGS) for (n = node->child; n; n = n->next) { p->flags |= ttypes[TTYPE_FUNC_ARG]; - word(p, n->string); + term_word(p, n->string); p->flags &= ~ttypes[TTYPE_FUNC_ARG]; if (n->next) - word(p, ","); + term_word(p, ","); } - if (node->next && node->next->tok == MDOC_Fa) - word(p, ","); + if (node->child && node->next && node->next->tok == MDOC_Fa) + term_word(p, ","); return(0); } @@ -1248,16 +1274,23 @@ termp_va_pre(DECL_ARGS) static int termp_bd_pre(DECL_ARGS) { - const struct mdoc_node *n; - int i, type; + int i, type, ln; - if (MDOC_BLOCK == node->type) { - /* FIXME: parent prev? */ - if (node->prev) - vspace(p); + /* + * This is fairly tricky due primarily to crappy documentation. + * If -ragged or -filled are specified, the block does nothing + * but change the indentation. + * + * If, on the other hand, -unfilled or -literal are specified, + * then the game changes. Text is printed exactly as entered in + * the display: if a macro line, a newline is appended to the + * line. Blank lines are allowed. + */ + + if (MDOC_BLOCK == node->type) + return(fmt_block_vspace(p, node, node)); + else if (MDOC_BODY != node->type) return(1); - } else if (MDOC_BODY != node->type) - return(1); if (NULL == node->parent->args) errx(1, "missing display type"); @@ -1301,15 +1334,22 @@ termp_bd_pre(DECL_ARGS) return(1); } + /* + * Tricky. Iterate through all children. If we're on a + * different parse line, append a newline and then the contents. + * Ew. + */ + p->flags |= TERMP_LITERAL; + ln = node->child ? node->child->line : 0; - for (n = node->child; n; n = n->next) { - if (MDOC_TEXT != n->type) { - warnx("non-text children not yet allowed"); - continue; + for (node = node->child; node; node = node->next) { + if (ln < node->line) { + term_flushln(p); + p->flags |= TERMP_NOSPACE; } - word(p, n->string); - flushln(p); + ln = node->line; + term_node(p, pair, meta, node); } return(0); @@ -1324,11 +1364,10 @@ termp_bd_post(DECL_ARGS) if (MDOC_BODY != node->type) return; - if ( ! (p->flags & TERMP_LITERAL)) - flushln(p); - + term_flushln(p); p->flags &= ~TERMP_LITERAL; p->offset = pair->offset; + p->flags |= TERMP_NOSPACE; } @@ -1339,7 +1378,7 @@ termp_qq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\""); + term_word(p, "\""); p->flags |= TERMP_NOSPACE; return(1); } @@ -1353,7 +1392,7 @@ termp_qq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\""); + term_word(p, "\""); } @@ -1362,7 +1401,7 @@ static int termp_bsx_pre(DECL_ARGS) { - word(p, "BSDI BSD/OS"); + term_word(p, "BSDI BSD/OS"); return(1); } @@ -1374,7 +1413,7 @@ termp_bx_post(DECL_ARGS) if (node->child) p->flags |= TERMP_NOSPACE; - word(p, "BSD"); + term_word(p, "BSD"); } @@ -1383,17 +1422,27 @@ static int termp_ox_pre(DECL_ARGS) { - word(p, "OpenBSD"); + term_word(p, "OpenBSD"); return(1); } /* ARGSUSED */ static int +termp_dx_pre(DECL_ARGS) +{ + + term_word(p, "DragonFly"); + return(1); +} + + +/* ARGSUSED */ +static int termp_ux_pre(DECL_ARGS) { - word(p, "UNIX"); + term_word(p, "UNIX"); return(1); } @@ -1403,7 +1452,7 @@ static int termp_fx_pre(DECL_ARGS) { - word(p, "FreeBSD"); + term_word(p, "FreeBSD"); return(1); } @@ -1413,7 +1462,7 @@ static int termp_nx_pre(DECL_ARGS) { - word(p, "NetBSD"); + term_word(p, "NetBSD"); return(1); } @@ -1425,7 +1474,7 @@ termp_sq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\\(oq"); + term_word(p, "\\(oq"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1439,7 +1488,7 @@ termp_sq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\\(aq"); + term_word(p, "\\(aq"); } @@ -1470,9 +1519,9 @@ termp_ss_pre(DECL_ARGS) switch (node->type) { case (MDOC_BLOCK): - newln(p); + term_newln(p); if (node->prev) - vspace(p); + term_vspace(p); break; case (MDOC_HEAD): TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SSECTION]); @@ -1493,7 +1542,7 @@ termp_ss_post(DECL_ARGS) switch (node->type) { case (MDOC_HEAD): - newln(p); + term_newln(p); p->offset = INDENT; break; default: @@ -1528,7 +1577,7 @@ termp_cd_pre(DECL_ARGS) { TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]); - newln(p); + term_newln(p); return(1); } @@ -1559,8 +1608,8 @@ termp_in_pre(DECL_ARGS) { TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]); - word(p, "#include"); - word(p, "<"); + term_word(p, "#include"); + term_word(p, "<"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1572,13 +1621,13 @@ termp_in_post(DECL_ARGS) { p->flags |= TERMP_NOSPACE; - word(p, ">"); + term_word(p, ">"); - newln(p); + term_newln(p); if (SEC_SYNOPSIS != node->sec) return; if (node->next && MDOC_In != node->next->tok) - vspace(p); + term_vspace(p); } @@ -1595,7 +1644,7 @@ termp_at_pre(DECL_ARGS) if (NULL == att) att = "AT&T UNIX"; - word(p, att); + term_word(p, att); return(0); } @@ -1607,7 +1656,7 @@ termp_brq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\\(lC"); + term_word(p, "\\(lC"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1621,7 +1670,7 @@ termp_brq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\\(rC"); + term_word(p, "\\(rC"); } @@ -1632,7 +1681,7 @@ termp_bq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\\(lB"); + term_word(p, "\\(lB"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1646,7 +1695,7 @@ termp_bq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, "\\(rB"); + term_word(p, "\\(rB"); } @@ -1657,7 +1706,7 @@ termp_pq_pre(DECL_ARGS) if (MDOC_BODY != node->type) return(1); - word(p, "\\&("); + term_word(p, "\\&("); p->flags |= TERMP_NOSPACE; return(1); } @@ -1670,7 +1719,7 @@ termp_pq_post(DECL_ARGS) if (MDOC_BODY != node->type) return; - word(p, ")"); + term_word(p, ")"); } @@ -1681,7 +1730,7 @@ termp_fo_pre(DECL_ARGS) const struct mdoc_node *n; if (MDOC_BODY == node->type) { - word(p, "("); + term_word(p, "("); p->flags |= TERMP_NOSPACE; return(1); } else if (MDOC_HEAD != node->type) @@ -1693,7 +1742,7 @@ termp_fo_pre(DECL_ARGS) for (n = node->child; n; n = n->next) { if (MDOC_TEXT != n->type) errx(1, "expected text line argument"); - word(p, n->string); + term_word(p, n->string); } p->flags &= ~ttypes[TTYPE_FUNC_NAME]; @@ -1709,10 +1758,10 @@ termp_fo_post(DECL_ARGS) if (MDOC_BODY != node->type) return; p->flags |= TERMP_NOSPACE; - word(p, ")"); + term_word(p, ")"); p->flags |= TERMP_NOSPACE; - word(p, ";"); - newln(p); + term_word(p, ";"); + term_newln(p); } @@ -1774,16 +1823,14 @@ static int termp_sm_pre(DECL_ARGS) { -#if notyet - assert(node->child); - if (0 == strcmp("off", node->child->data.text.string)) { + if (NULL == node->child || MDOC_TEXT != node->child->type) + errx(1, "expected boolean line argument"); + + if (0 == strcmp("on", node->child->string)) { p->flags &= ~TERMP_NONOSPACE; p->flags &= ~TERMP_NOSPACE; - } else { + } else p->flags |= TERMP_NONOSPACE; - p->flags |= TERMP_NOSPACE; - } -#endif return(0); } @@ -1795,7 +1842,7 @@ termp_ap_pre(DECL_ARGS) { p->flags |= TERMP_NOSPACE; - word(p, "\\(aq"); + term_word(p, "\\(aq"); p->flags |= TERMP_NOSPACE; return(1); } @@ -1803,21 +1850,43 @@ termp_ap_pre(DECL_ARGS) /* ARGSUSED */ static int +termp__j_pre(DECL_ARGS) +{ + + TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_REF_JOURNAL]); + return(1); +} + + +/* ARGSUSED */ +static int termp__t_pre(DECL_ARGS) { - TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_REF_TITLE]); + term_word(p, "\""); + p->flags |= TERMP_NOSPACE; return(1); } /* ARGSUSED */ static void +termp__t_post(DECL_ARGS) +{ + + p->flags |= TERMP_NOSPACE; + term_word(p, "\""); + termp____post(p, pair, meta, node); +} + + +/* ARGSUSED */ +static void termp____post(DECL_ARGS) { p->flags |= TERMP_NOSPACE; - word(p, node->next ? "," : "."); + term_word(p, node->next ? "," : "."); } @@ -1831,14 +1900,14 @@ termp_lk_pre(DECL_ARGS) errx(1, "expected line argument"); p->flags |= ttypes[TTYPE_LINK_ANCHOR]; - word(p, n->string); + term_word(p, n->string); p->flags &= ~ttypes[TTYPE_LINK_ANCHOR]; p->flags |= TERMP_NOSPACE; - word(p, ":"); + term_word(p, ":"); p->flags |= ttypes[TTYPE_LINK_TEXT]; for ( ; n; n = n->next) { - word(p, n->string); + term_word(p, n->string); } p->flags &= ~ttypes[TTYPE_LINK_TEXT];