]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_term.c
Revert IGNPAR to a warning after clue-stick applied by schwarze@:
[mandoc.git] / mdoc_term.c
index 5df90460b78c13356ebb77b71a1d4591beb983c1..3746b3eabd79289b07130302656f2237da408b41 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_term.c,v 1.189 2010/09/26 10:00:42 kristaps Exp $ */
+/*     $Id: mdoc_term.c,v 1.201 2010/12/22 11:15:16 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -81,7 +81,6 @@ static        void      termp_lb_post(DECL_ARGS);
 static void      termp_nm_post(DECL_ARGS);
 static void      termp_pf_post(DECL_ARGS);
 static void      termp_quote_post(DECL_ARGS);
-static void      termp_quote_post(DECL_ARGS);
 static void      termp_sh_post(DECL_ARGS);
 static void      termp_ss_post(DECL_ARGS);
 
@@ -103,6 +102,7 @@ static      int       termp_fl_pre(DECL_ARGS);
 static int       termp_fn_pre(DECL_ARGS);
 static int       termp_fo_pre(DECL_ARGS);
 static int       termp_ft_pre(DECL_ARGS);
+static int       termp_igndelim_pre(DECL_ARGS);
 static int       termp_in_pre(DECL_ARGS);
 static int       termp_it_pre(DECL_ARGS);
 static int       termp_li_pre(DECL_ARGS);
@@ -110,7 +110,6 @@ static      int       termp_lk_pre(DECL_ARGS);
 static int       termp_nd_pre(DECL_ARGS);
 static int       termp_nm_pre(DECL_ARGS);
 static int       termp_ns_pre(DECL_ARGS);
-static int       termp_pf_pre(DECL_ARGS);
 static int       termp_quote_pre(DECL_ARGS);
 static int       termp_rs_pre(DECL_ARGS);
 static int       termp_rv_pre(DECL_ARGS);
@@ -197,12 +196,12 @@ static    const struct termact termacts[MDOC_MAX] = {
        { NULL, NULL }, /* Eo */
        { termp_xx_pre, NULL }, /* Fx */
        { termp_bold_pre, NULL }, /* Ms */
-       { NULL, NULL }, /* No */
+       { termp_igndelim_pre, NULL }, /* No */
        { termp_ns_pre, NULL }, /* Ns */
        { termp_xx_pre, NULL }, /* Nx */
        { termp_xx_pre, NULL }, /* Ox */
        { NULL, NULL }, /* Pc */
-       { termp_pf_pre, termp_pf_post }, /* Pf */
+       { termp_igndelim_pre, termp_pf_post }, /* Pf */
        { termp_quote_pre, termp_quote_post }, /* Po */
        { termp_quote_pre, termp_quote_post }, /* Pq */
        { NULL, NULL }, /* Qc */
@@ -320,9 +319,12 @@ print_mdoc_node(DECL_ARGS)
        /*
         * Keeps only work until the end of a line.  If a keep was
         * invoked in a prior line, revert it to PREKEEP.
+        *
+        * Also let SYNPRETTY sections behave as if they were wrapped
+        * in a `Bk' block.
         */
 
-       if (TERMP_KEEP & p->flags) {
+       if (TERMP_KEEP & p->flags || MDOC_SYNPRETTY & n->flags) {
                if (n->prev && n->prev->line != n->line) {
                        p->flags &= ~TERMP_KEEP;
                        p->flags |= TERMP_PREKEEP;
@@ -334,6 +336,16 @@ print_mdoc_node(DECL_ARGS)
                }
        }
 
+       /*
+        * Since SYNPRETTY sections aren't "turned off" with `Ek',
+        * we have to intuit whether we should disable formatting.
+        */
+
+       if ( ! (MDOC_SYNPRETTY & n->flags) &&
+           ((n->prev   && MDOC_SYNPRETTY & n->prev->flags) ||
+            (n->parent && MDOC_SYNPRETTY & n->parent->flags)))
+               p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP);
+
        if (chld && n->child)
                print_mdoc_nodelist(p, &npair, m, n->child);
 
@@ -544,9 +556,9 @@ print_bvspace(struct termp *p,
 
        term_newln(p);
 
-       if (MDOC_Bd == bl->tok && bl->data.Bd->comp)
+       if (MDOC_Bd == bl->tok && bl->norm->d.Bd.comp)
                return;
-       if (MDOC_Bl == bl->tok && bl->data.Bl->comp)
+       if (MDOC_Bl == bl->tok && bl->norm->d.Bl.comp)
                return;
 
        /* Do not vspace directly after Ss/Sh. */
@@ -565,13 +577,13 @@ print_bvspace(struct termp *p,
 
        /* A `-column' does not assert vspace within the list. */
 
-       if (MDOC_Bl == bl->tok && LIST_column == bl->data.Bl->type)
+       if (MDOC_Bl == bl->tok && LIST_column == bl->norm->d.Bl.type)
                if (n->prev && MDOC_It == n->prev->tok)
                        return;
 
        /* A `-diag' without body does not vspace. */
 
-       if (MDOC_Bl == bl->tok && LIST_diag == bl->data.Bl->type)
+       if (MDOC_Bl == bl->tok && LIST_diag == bl->norm->d.Bl.type)
                if (n->prev && MDOC_It == n->prev->tok) {
                        assert(n->prev->body);
                        if (NULL == n->prev->body->child)
@@ -598,8 +610,7 @@ termp_it_pre(DECL_ARGS)
        }
 
        bl = n->parent->parent->parent;
-       assert(bl->data.Bl);
-       type = bl->data.Bl->type;
+       type = bl->norm->d.Bl.type;
 
        /* 
         * First calculate width and offset.  This is pretty easy unless
@@ -609,8 +620,8 @@ termp_it_pre(DECL_ARGS)
 
        width = offset = 0;
 
-       if (bl->data.Bl->offs)
-               offset = a2offs(p, bl->data.Bl->offs);
+       if (bl->norm->d.Bl.offs)
+               offset = a2offs(p, bl->norm->d.Bl.offs);
 
        switch (type) {
        case (LIST_column):
@@ -626,7 +637,7 @@ termp_it_pre(DECL_ARGS)
                 *   column.
                 * - For more than 5 columns, add only one column.
                 */
-               ncols = bl->data.Bl->ncols;
+               ncols = bl->norm->d.Bl.ncols;
 
                /* LINTED */
                dcol = ncols < 5 ? term_len(p, 4) : 
@@ -641,7 +652,7 @@ termp_it_pre(DECL_ARGS)
                                nn->prev && i < (int)ncols; 
                                nn = nn->prev, i++)
                        offset += dcol + a2width
-                               (p, bl->data.Bl->cols[i]);
+                               (p, bl->norm->d.Bl.cols[i]);
 
                /*
                 * When exceeding the declared number of columns, leave
@@ -656,10 +667,10 @@ termp_it_pre(DECL_ARGS)
                 * Use the declared column widths, extended as explained
                 * in the preceding paragraph.
                 */
-               width = a2width(p, bl->data.Bl->cols[i]) + dcol;
+               width = a2width(p, bl->norm->d.Bl.cols[i]) + dcol;
                break;
        default:
-               if (NULL == bl->data.Bl->width)
+               if (NULL == bl->norm->d.Bl.width)
                        break;
 
                /* 
@@ -667,8 +678,8 @@ termp_it_pre(DECL_ARGS)
                 * number for buffering single arguments.  See the above
                 * handling for column for how this changes.
                 */
-               assert(bl->data.Bl->width);
-               width = a2width(p, bl->data.Bl->width) + term_len(p, 2);
+               assert(bl->norm->d.Bl.width);
+               width = a2width(p, bl->norm->d.Bl.width) + term_len(p, 2);
                break;
        }
 
@@ -930,7 +941,7 @@ termp_it_post(DECL_ARGS)
        if (MDOC_BLOCK == n->type)
                return;
 
-       type = n->parent->parent->parent->data.Bl->type;
+       type = n->parent->parent->parent->norm->d.Bl.type;
 
        switch (type) {
        case (LIST_item):
@@ -1104,10 +1115,10 @@ termp_an_post(DECL_ARGS)
                return;
        }
 
-       if (AUTH_split == n->data.An.auth) {
+       if (AUTH_split == n->norm->d.An.auth) {
                p->flags &= ~TERMP_NOSPLIT;
                p->flags |= TERMP_SPLIT;
-       } else if (AUTH_nosplit == n->data.An.auth) {
+       } else if (AUTH_nosplit == n->norm->d.An.auth) {
                p->flags &= ~TERMP_SPLIT;
                p->flags |= TERMP_NOSPLIT;
        }
@@ -1554,9 +1565,8 @@ termp_bd_pre(DECL_ARGS)
        } else if (MDOC_HEAD == n->type)
                return(0);
 
-       assert(n->data.Bd);
-       if (n->data.Bd->offs)
-               p->offset += a2offs(p, n->data.Bd->offs);
+       if (n->norm->d.Bd.offs)
+               p->offset += a2offs(p, n->norm->d.Bd.offs);
 
        /*
         * If -ragged or -filled are specified, the block does nothing
@@ -1566,8 +1576,8 @@ termp_bd_pre(DECL_ARGS)
         * lines are allowed.
         */
        
-       if (DISP_literal != n->data.Bd->type && 
-                       DISP_unfilled != n->data.Bd->type)
+       if (DISP_literal != n->norm->d.Bd.type && 
+                       DISP_unfilled != n->norm->d.Bd.type)
                return(1);
 
        tabwidth = p->tabwidth;
@@ -1578,6 +1588,32 @@ termp_bd_pre(DECL_ARGS)
 
        for (nn = n->child; nn; nn = nn->next) {
                print_mdoc_node(p, pair, m, nn);
+               /*
+                * If the printed node flushes its own line, then we
+                * needn't do it here as well.  This is hacky, but the
+                * notion of selective eoln whitespace is pretty dumb
+                * anyway, so don't sweat it.
+                */
+               switch (nn->tok) {
+               case (MDOC_Sm):
+                       /* FALLTHROUGH */
+               case (MDOC_br):
+                       /* FALLTHROUGH */
+               case (MDOC_sp):
+                       /* FALLTHROUGH */
+               case (MDOC_Bl):
+                       /* FALLTHROUGH */
+               case (MDOC_D1):
+                       /* FALLTHROUGH */
+               case (MDOC_Dl):
+                       /* FALLTHROUGH */
+               case (MDOC_Lp):
+                       /* FALLTHROUGH */
+               case (MDOC_Pp):
+                       continue;
+               default:
+                       break;
+               }
                if (nn->next && nn->next->line == nn->line)
                        continue;
                term_flushln(p);
@@ -1603,9 +1639,8 @@ termp_bd_post(DECL_ARGS)
        rm = p->rmargin;
        rmax = p->maxrmargin;
 
-       assert(n->data.Bd);
-       if (DISP_literal == n->data.Bd->type || 
-                       DISP_unfilled == n->data.Bd->type)
+       if (DISP_literal == n->norm->d.Bd.type || 
+                       DISP_unfilled == n->norm->d.Bd.type)
                p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
 
        p->flags |= TERMP_NOSPACE;
@@ -1636,7 +1671,7 @@ termp_xx_pre(DECL_ARGS)
        pp = NULL;
        switch (n->tok) {
        case (MDOC_Bsx):
-               pp = "BSDI BSD/OS";
+               pp = "BSD/OS";
                break;
        case (MDOC_Dx):
                pp = "DragonFly";
@@ -1665,7 +1700,7 @@ termp_xx_pre(DECL_ARGS)
 
 /* ARGSUSED */
 static int
-termp_pf_pre(DECL_ARGS)
+termp_igndelim_pre(DECL_ARGS)
 {
 
        p->flags |= TERMP_IGNDELIM;
@@ -1678,7 +1713,6 @@ static void
 termp_pf_post(DECL_ARGS)
 {
 
-       p->flags &= ~TERMP_IGNDELIM;
        p->flags |= TERMP_NOSPACE;
 }
 
@@ -1778,11 +1812,6 @@ termp_sp_pre(DECL_ARGS)
                len = 0;
                break;
        default:
-               assert(n->parent);
-               if ((NULL == n->next || NULL == n->prev) &&
-                               (MDOC_Ss == n->parent->tok ||
-                                MDOC_Sh == n->parent->tok))
-                       return(0);
                len = 1;
                break;
        }
@@ -1966,11 +1995,9 @@ termp_bf_pre(DECL_ARGS)
        else if (MDOC_BLOCK != n->type)
                return(1);
 
-       assert(n->data.Bf);
-
-       if (FONT_Em == n->data.Bf->font) 
+       if (FONT_Em == n->norm->d.Bf.font) 
                term_fontpush(p, TERMFONT_UNDER);
-       else if (FONT_Sy == n->data.Bf->font) 
+       else if (FONT_Sy == n->norm->d.Bf.font) 
                term_fontpush(p, TERMFONT_BOLD);
        else 
                term_fontpush(p, TERMFONT_NONE);
@@ -2056,7 +2083,7 @@ termp_lk_pre(DECL_ARGS)
 
        nn = sv = n->child;
 
-       if (NULL == nn->next)
+       if (NULL == nn || NULL == nn->next)
                return(1);
 
        for (nn = nn->next; nn; nn = nn->next) 
@@ -2085,7 +2112,8 @@ termp_bk_pre(DECL_ARGS)
        case (MDOC_HEAD):
                return(0);
        case (MDOC_BODY):
-               p->flags |= TERMP_PREKEEP;
+               if (n->parent->args || 0 == n->prev->nchild)
+                       p->flags |= TERMP_PREKEEP;
                break;
        default:
                abort();