[BACK]Return to docbook2mdoc.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / docbook2mdoc

Diff for /docbook2mdoc/docbook2mdoc.c between version 1.134 and 1.148

version 1.134, 2019/04/23 22:25:28 version 1.148, 2019/05/02 04:15:40
Line 21 
Line 21 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #include "xmalloc.h"
 #include "node.h"  #include "node.h"
 #include "macro.h"  #include "macro.h"
 #include "format.h"  #include "format.h"
Line 30 
Line 31 
  */   */
   
 static void      pnode_print(struct format *, struct pnode *);  static void      pnode_print(struct format *, struct pnode *);
 static void      pnode_printrefentry(struct format *, struct pnode *);  
   
   
 static void  static void
Line 40  pnode_printtext(struct format *f, struct pnode *n)
Line 40  pnode_printtext(struct format *f, struct pnode *n)
         char            *cp;          char            *cp;
         int              accept_arg;          int              accept_arg;
   
           para_check(f);
         cp = n->b;          cp = n->b;
         accept_arg = f->flags & FMT_ARG;          accept_arg = f->flags & FMT_ARG;
         if (f->linestate == LINE_MACRO && !n->spc && !accept_arg) {          if (f->linestate == LINE_MACRO && !accept_arg &&
               (n->flags & NFLAG_SPC) == 0) {
                 for (;;) {                  for (;;) {
                         if (*cp == '\0')                          if (*cp == '\0')
                                 return;                                  return;
Line 53  pnode_printtext(struct format *f, struct pnode *n)
Line 55  pnode_printtext(struct format *f, struct pnode *n)
                 if (isspace((unsigned char)*cp)) {                  if (isspace((unsigned char)*cp)) {
                         while (isspace((unsigned char)*cp))                          while (isspace((unsigned char)*cp))
                                 cp++;                                  cp++;
                         macro_close(f);                          n->flags |= NFLAG_SPC;
                 } else {                  } else {
                         fputs(" Ns", stdout);                          f->flags &= ~FMT_NOSPC;
                         f->flags &= FMT_IMPL;                          f->flags |= FMT_CHILD;
                           macro_open(f, "Ns");
                           f->flags &= ~FMT_ARG;
                           f->flags |= FMT_CHILD;
                         accept_arg = 1;                          accept_arg = 1;
                 }                  }
         }          }
         if (f->linestate == LINE_MACRO && !accept_arg &&          if (f->linestate == LINE_MACRO && f->nofill == 0 &&
             (f->flags & (FMT_CHILD | FMT_IMPL)) == 0)              !accept_arg && (f->flags & FMT_IMPL) == 0)
                 macro_close(f);                  macro_close(f);
   
         /*          /*
Line 70  pnode_printtext(struct format *f, struct pnode *n)
Line 75  pnode_printtext(struct format *f, struct pnode *n)
          * Set the spacing flag to avoid a redundant .Ns macro.           * Set the spacing flag to avoid a redundant .Ns macro.
          */           */
   
         if (f->linestate != LINE_MACRO &&          if ((f->nofill || f->linestate != LINE_MACRO) &&
             (nn = TAILQ_NEXT(n, child)) != NULL && nn->spc == 0) {              (nn = TAILQ_NEXT(n, child)) != NULL &&
                (nn->flags & NFLAG_SPC) == 0) {
                 switch (pnode_class(nn->node)) {                  switch (pnode_class(nn->node)) {
                 case CLASS_LINE:                  case CLASS_LINE:
                 case CLASS_ENCL:                  case CLASS_ENCL:
                         macro_open(f, "Pf");                          macro_open(f, "Pf");
                         accept_arg = 1;                          accept_arg = 1;
                         f->flags |= FMT_CHILD;                          f->flags |= FMT_CHILD;
                         nn->spc = 1;                          nn->flags |= NFLAG_SPC;
                         break;                          break;
                 default:                  default:
                         break;                          break;
Line 89  pnode_printtext(struct format *f, struct pnode *n)
Line 95  pnode_printtext(struct format *f, struct pnode *n)
         case LINE_NEW:          case LINE_NEW:
                 break;                  break;
         case LINE_TEXT:          case LINE_TEXT:
                 if (n->spc) {                  if (n->flags & NFLAG_SPC) {
                         if (n->node == NODE_TEXT)                          if (n->flags & NFLAG_LINE &&
                               pnode_class(n->node) == CLASS_TEXT)
                                 macro_close(f);                                  macro_close(f);
                         else                          else
                                 putchar(' ');                                  putchar(' ');
                 }                  }
                 break;                  break;
         case LINE_MACRO:          case LINE_MACRO:
                 if (accept_arg)                  if (accept_arg == 0) {
                           if (f->nofill) {
                                   f->flags &= ~FMT_NOSPC;
                                   f->flags |= FMT_CHILD;
                                   macro_open(f, "No ");
                                   f->flags &= ~FMT_ARG;
                                   f->flags |= FMT_CHILD;
                           } else
                                   macro_close(f);
                   } else if (n->flags & NFLAG_SPC ||
                       (f->flags & FMT_ARG) == 0 ||
                       (nn = TAILQ_PREV(n, pnodeq, child)) == NULL ||
                       pnode_class(nn->node) != CLASS_TEXT)
                         putchar(' ');                          putchar(' ');
                 else  
                         macro_close(f);  
                 break;                  break;
         }          }
   
Line 187  static void
Line 204  static void
 pnode_printsection(struct format *f, struct pnode *n)  pnode_printsection(struct format *f, struct pnode *n)
 {  {
         struct pnode    *nc, *ncc;          struct pnode    *nc, *ncc;
         const char      *title;  
         int              flags, level;          int              flags, level;
   
         if (n->parent == NULL) {          if (n->parent == NULL)
                 pnode_printrefentry(f, n);  
                 return;                  return;
         }  
   
         level = ++f->level;          level = ++f->level;
         flags = ARG_SPACE;          flags = ARG_SPACE;
         switch (n->node) {          switch (n->node) {
         case NODE_PREFACE:  
         case NODE_SECTION:          case NODE_SECTION:
         case NODE_APPENDIX:          case NODE_APPENDIX:
                 if (level == 1)                  if (level == 1)
                         flags |= ARG_UPPER;                          flags |= ARG_UPPER;
                 break;                  break;
         case NODE_SIMPLESECT:          case NODE_SIMPLESECT:
         case NODE_LEGALNOTICE:  
                 if (level < 2)                  if (level < 2)
                         level = 2;                          level = 2;
                 break;                  break;
         default:          case NODE_NOTE:
                 if (level < 3)                  if (level < 3)
                         level = 3;                          level = 3;
                 break;                  break;
           default:
                   abort();
         }          }
   
         TAILQ_FOREACH(nc, &n->childq, child)          TAILQ_FOREACH(nc, &n->childq, child)
                 if (nc->node == NODE_TITLE)                  if (nc->node == NODE_TITLE)
                         break;                          break;
   
         if (nc == NULL) {  
                 switch (n->node) {  
                 case NODE_PREFACE:  
                         title = "Preface";  
                         break;  
                 case NODE_APPENDIX:  
                         title = "Appendix";  
                         break;  
                 case NODE_LEGALNOTICE:  
                         title = "Legal Notice";  
                         break;  
                 case NODE_CAUTION:  
                         title = "Caution";  
                         break;  
                 case NODE_NOTE:  
                         title = "Note";  
                         break;  
                 case NODE_TIP:  
                         title = "Tip";  
                         break;  
                 case NODE_WARNING:  
                         title = "Warning";  
                         break;  
                 default:  
                         title = "Unknown";  
                         break;  
                 }  
         }  
   
         switch (level) {          switch (level) {
         case 1:          case 1:
                 macro_close(f);                  macro_close(f);
Line 265  pnode_printsection(struct format *f, struct pnode *n)
Line 250  pnode_printsection(struct format *f, struct pnode *n)
                 macro_open(f, "Sy");                  macro_open(f, "Sy");
                 break;                  break;
         }          }
           macro_addnode(f, nc, flags);
         if (nc != NULL)  
                 macro_addnode(f, nc, flags);  
         else  
                 macro_addarg(f, title, flags | ARG_QUOTED);  
         macro_close(f);          macro_close(f);
   
         /*          /*
Line 375  pnode_printmath(struct format *f, struct pnode *n)
Line 356  pnode_printmath(struct format *f, struct pnode *n)
 static void  static void
 pnode_printfuncprototype(struct format *f, struct pnode *n)  pnode_printfuncprototype(struct format *f, struct pnode *n)
 {  {
         struct pnode    *fdef, *ftype, *nc, *nn;          struct pnode    *fdef, *fps, *ftype, *nc, *nn;
   
         /*          /*
          * Extract <funcdef> child and ignore <void> child.           * Extract <funcdef> child and ignore <void> child.
Line 429  pnode_printfuncprototype(struct format *f, struct pnod
Line 410  pnode_printfuncprototype(struct format *f, struct pnod
                 return;                  return;
   
         while (nc != NULL) {          while (nc != NULL) {
                 macro_nodeline(f, "Fa", nc, ARG_SINGLE);                  if ((fps = pnode_takefirst(nc, NODE_FUNCPARAMS)) != NULL) {
                           macro_open(f, "Fa \"");
                           macro_addnode(f, nc, ARG_QUOTED);
                           macro_addarg(f, "(", ARG_QUOTED);
                           macro_addnode(f, fps, ARG_QUOTED);
                           macro_addarg(f, ")", ARG_QUOTED);
                           putchar('"');
                           macro_close(f);
                   } else
                           macro_nodeline(f, "Fa", nc, ARG_SINGLE);
                 pnode_unlink(nc);                  pnode_unlink(nc);
                 nc = TAILQ_FIRST(&n->childq);                  nc = TAILQ_FIRST(&n->childq);
         }          }
Line 722  pnode_printolink(struct format *f, struct pnode *n)
Line 712  pnode_printolink(struct format *f, struct pnode *n)
 static void  static void
 pnode_printprologue(struct format *f, struct pnode *root)  pnode_printprologue(struct format *f, struct pnode *root)
 {  {
         struct pnode    *date, *refmeta, *name, *vol, *descr, *nc, *nn;          struct pnode    *name, *nc;
         const char      *sname;  
   
         /* Collect information. */          nc = TAILQ_FIRST(&root->childq);
           assert(nc->node == NODE_DATE);
           macro_nodeline(f, "Dd", nc, 0);
           pnode_unlink(nc);
   
         if ((date = pnode_takefirst(root, NODE_PUBDATE)) == NULL)  
                 date = pnode_takefirst(root, NODE_DATE);  
   
         name = vol = NULL;  
         if ((refmeta = pnode_findfirst(root, NODE_REFMETA)) != NULL) {  
                 TAILQ_FOREACH_SAFE(nc, &refmeta->childq, child, nn) {  
                         switch (nc->node) {  
                         case NODE_REFENTRYTITLE:  
                                 name = nc;  
                                 break;  
                         case NODE_MANVOLNUM:  
                                 vol = nc;  
                                 break;  
                         default:  
                                 continue;  
                         }  
                         TAILQ_REMOVE(&refmeta->childq, nc, child);  
                 }  
         }  
   
         if (pnode_findfirst(root, NODE_REFNAMEDIV) == NULL &&  
             ((nc = pnode_findfirst(root, NODE_BOOKINFO)) != NULL ||  
              (nc = pnode_findfirst(root, NODE_REFENTRYINFO)) != NULL))  
                 descr = pnode_takefirst(nc, NODE_TITLE);  
         else  
                 descr = NULL;  
   
         /* Print prologue. */  
   
         if (date == NULL)  
                 macro_line(f, "Dd $Mdocdate" "$");  
         else  
                 macro_nodeline(f, "Dd", date, 0);  
   
         macro_open(f, "Dt");          macro_open(f, "Dt");
         if (name == NULL) {          name = TAILQ_FIRST(&root->childq);
                 sname = pnode_getattr_raw(root, ATTRKEY_ID, "UNKNOWN");          assert(name->node == NODE_REFENTRYTITLE);
                 macro_addarg(f, sname, ARG_SPACE | ARG_SINGLE | ARG_UPPER);          macro_addnode(f, name, ARG_SPACE | ARG_SINGLE | ARG_UPPER);
         } else          TAILQ_REMOVE(&root->childq, name, child);
                 macro_addnode(f, name, ARG_SPACE | ARG_SINGLE | ARG_UPPER);          name->parent = NULL;
         if (vol == NULL)          nc = TAILQ_FIRST(&root->childq);
                 macro_addarg(f, "1", ARG_SPACE);          assert (nc->node == NODE_MANVOLNUM);
         else          macro_addnode(f, nc, ARG_SPACE | ARG_SINGLE);
                 macro_addnode(f, vol, ARG_SPACE | ARG_SINGLE);          pnode_unlink(nc);
   
         macro_line(f, "Os");          macro_line(f, "Os");
   
         if (descr != NULL) {          nc = TAILQ_FIRST(&root->childq);
           if (nc != NULL && nc->node == NODE_TITLE) {
                 macro_line(f, "Sh NAME");                  macro_line(f, "Sh NAME");
                 if (name == NULL)                  macro_nodeline(f, "Nm", name, ARG_SINGLE);
                         macro_argline(f, "Nm", sname);                  macro_nodeline(f, "Nd", nc, 0);
                 else                  pnode_unlink(nc);
                         macro_nodeline(f, "Nm", name, ARG_SINGLE);  
                 macro_nodeline(f, "Nd", descr, 0);  
         }          }
   
         /* Clean up. */  
   
         pnode_unlink(date);  
         pnode_unlink(name);          pnode_unlink(name);
         pnode_unlink(vol);  
         pnode_unlink(descr);  
         f->parastate = PARA_HAVE;          f->parastate = PARA_HAVE;
 }  }
   
 static void  
 pnode_printrefentry(struct format *f, struct pnode *n)  
 {  
         struct pnode    *info, *meta, *nc, *title;  
         struct pnode    *match, *later;  
   
         /* Collect nodes that remained behind when writing the prologue. */  
   
         meta = NULL;  
         info = pnode_takefirst(n, NODE_BOOKINFO);  
         if (info != NULL && TAILQ_FIRST(&info->childq) == NULL) {  
                 pnode_unlink(info);  
                 info = NULL;  
         }  
         if (info == NULL) {  
                 info = pnode_takefirst(n, NODE_REFENTRYINFO);  
                 if (info != NULL && TAILQ_FIRST(&info->childq) == NULL) {  
                         pnode_unlink(info);  
                         info = NULL;  
                 }  
                 if (info == NULL)  
                         info = pnode_takefirst(n, NODE_INFO);  
                 meta = pnode_takefirst(n, NODE_REFMETA);  
                 if (meta != NULL && TAILQ_FIRST(&meta->childq) == NULL) {  
                         pnode_unlink(meta);  
                         meta = NULL;  
                 }  
         }  
         if (info == NULL && meta == NULL)  
                 return;  
   
         /*  
          * Find the best place to put this information.  
          * Use the last existing AUTHORS node, if any.  
          * Otherwise, put it behind all standard sections that  
          * conventionally precede AUTHORS, and also behind any  
          * non-standard sections that follow the last of these,  
          * but before the next standard section.  
          */  
   
         match = later = NULL;  
         TAILQ_FOREACH(nc, &n->childq, child) {  
                 switch (nc->node) {  
                 case NODE_REFENTRY:  
                 case NODE_REFNAMEDIV:  
                 case NODE_REFSYNOPSISDIV:  
                 case NODE_PREFACE:  
                         later = NULL;  
                         continue;  
                 case NODE_APPENDIX:  
                 case NODE_INDEX:  
                         if (later == NULL)  
                                 later = nc;  
                         continue;  
                 default:  
                         break;  
                 }  
                 if ((title = pnode_findfirst(nc, NODE_TITLE)) == NULL ||  
                     (title = TAILQ_FIRST(&title->childq)) == NULL ||  
                     title->node != NODE_TEXT)  
                         continue;  
                 if (strcasecmp(title->b, "AUTHORS") == 0 ||  
                     strcasecmp(title->b, "AUTHOR") == 0)  
                         match = nc;  
                 else if (strcasecmp(title->b, "NAME") == 0 ||  
                     strcasecmp(title->b, "SYNOPSIS") == 0 ||  
                     strcasecmp(title->b, "DESCRIPTION") == 0 ||  
                     strcasecmp(title->b, "RETURN VALUES") == 0 ||  
                     strcasecmp(title->b, "ENVIRONMENT") == 0 ||  
                     strcasecmp(title->b, "FILES") == 0 ||  
                     strcasecmp(title->b, "EXIT STATUS") == 0 ||  
                     strcasecmp(title->b, "EXAMPLES") == 0 ||  
                     strcasecmp(title->b, "DIAGNOSTICS") == 0 ||  
                     strcasecmp(title->b, "ERRORS") == 0 ||  
                     strcasecmp(title->b, "SEE ALSO") == 0 ||  
                     strcasecmp(title->b, "STANDARDS") == 0 ||  
                     strcasecmp(title->b, "HISTORY") == 0)  
                         later = NULL;  
                 else if ((strcasecmp(title->b, "CAVEATS") == 0 ||  
                     strcasecmp(title->b, "BUGS") == 0) &&  
                     later == NULL)  
                         later = nc;  
         }  
   
         /*  
          * If no AUTHORS section was found, create one from scratch,  
          * and insert that at the place selected earlier.  
          */  
   
         if (match == NULL) {  
                 if ((match = calloc(1, sizeof(*match))) == NULL) {  
                         perror(NULL);  
                         exit(1);  
                 }  
                 match->node = NODE_SECTION;  
                 match->spc = 1;  
                 match->parent = n;  
                 TAILQ_INIT(&match->childq);  
                 TAILQ_INIT(&match->attrq);  
                 if ((nc = pnode_alloc(match)) == NULL) {  
                         perror(NULL);  
                         exit(1);  
                 }  
                 nc->node = NODE_TITLE;  
                 nc->spc = 1;  
                 if ((nc = pnode_alloc(nc)) == NULL) {  
                         perror(NULL);  
                         exit(1);  
                 }  
                 nc->node = NODE_TEXT;  
                 if ((nc->b = strdup("AUTHORS")) == NULL) {  
                         perror(NULL);  
                         exit(1);  
                 }  
                 nc->spc = 1;  
                 if (later == NULL)  
                         TAILQ_INSERT_TAIL(&n->childq, match, child);  
                 else  
                         TAILQ_INSERT_BEFORE(later, match, child);  
         }  
   
         /*  
          * Dump the stuff excised at the beginning  
          * into this AUTHORS section.  
          */  
   
         if (info != NULL)  
                 TAILQ_INSERT_TAIL(&match->childq, info, child);  
         if (meta != NULL)  
                 TAILQ_INSERT_TAIL(&match->childq, meta, child);  
 }  
   
 /*  /*
  * We can have multiple <term> elements within a <varlistentry>, which   * We can have multiple <term> elements within a <varlistentry>, which
  * we should comma-separate as list headers.   * we should comma-separate as list headers.
Line 1037  pnode_printtgroup2(struct format *f, struct pnode *n)
Line 856  pnode_printtgroup2(struct format *f, struct pnode *n)
                 pnode_unlink(nr);                  pnode_unlink(nr);
         }          }
         macro_line(f, "El");          macro_line(f, "El");
           f->parastate = PARA_WANT;
         pnode_unlinksub(n);          pnode_unlinksub(n);
 }  }
   
Line 1063  pnode_printtgroup(struct format *f, struct pnode *n)
Line 883  pnode_printtgroup(struct format *f, struct pnode *n)
                 pnode_printrow(f, nc);                  pnode_printrow(f, nc);
         }          }
         macro_line(f, "El");          macro_line(f, "El");
           f->parastate = PARA_WANT;
         pnode_unlinksub(n);          pnode_unlinksub(n);
 }  }
   
Line 1082  pnode_printlist(struct format *f, struct pnode *n)
Line 903  pnode_printlist(struct format *f, struct pnode *n)
                 f->parastate = PARA_HAVE;                  f->parastate = PARA_HAVE;
         }          }
         macro_line(f, "El");          macro_line(f, "El");
           f->parastate = PARA_WANT;
         pnode_unlinksub(n);          pnode_unlinksub(n);
 }  }
   
Line 1100  pnode_printvariablelist(struct format *f, struct pnode
Line 922  pnode_printvariablelist(struct format *f, struct pnode
                         macro_nodeline(f, "It", nc, 0);                          macro_nodeline(f, "It", nc, 0);
         }          }
         macro_line(f, "El");          macro_line(f, "El");
           f->parastate = PARA_WANT;
         pnode_unlinksub(n);          pnode_unlinksub(n);
 }  }
   
Line 1118  pnode_print(struct format *f, struct pnode *n)
Line 941  pnode_print(struct format *f, struct pnode *n)
         if (n == NULL)          if (n == NULL)
                 return;                  return;
   
           if (n->flags & NFLAG_LINE &&
               (f->nofill || (f->flags & (FMT_ARG | FMT_IMPL)) == 0))
                   macro_close(f);
   
         was_impl = f->flags & FMT_IMPL;          was_impl = f->flags & FMT_IMPL;
         if (n->spc)          if (n->flags & NFLAG_SPC)
                 f->flags &= ~FMT_NOSPC;                  f->flags &= ~FMT_NOSPC;
         else          else
                 f->flags |= FMT_NOSPC;                  f->flags |= FMT_NOSPC;
Line 1284  pnode_print(struct format *f, struct pnode *n)
Line 1111  pnode_print(struct format *f, struct pnode *n)
                 if ((nc = TAILQ_FIRST(&n->childq)) != NULL &&                  if ((nc = TAILQ_FIRST(&n->childq)) != NULL &&
                     nc->node == NODE_FILENAME &&                      nc->node == NODE_FILENAME &&
                     TAILQ_NEXT(nc, child) == NULL) {                      TAILQ_NEXT(nc, child) == NULL) {
                         if (n->spc)                          if (n->flags & NFLAG_SPC)
                                 nc->spc = 1;                                  nc->flags |= NFLAG_SPC;
                 } else if (was_impl)                  } else if (was_impl)
                         macro_open(f, "Do");                          macro_open(f, "Do");
                 else {                  else {
Line 1303  pnode_print(struct format *f, struct pnode *n)
Line 1130  pnode_print(struct format *f, struct pnode *n)
         case NODE_SYSTEMITEM:          case NODE_SYSTEMITEM:
                 pnode_printsystemitem(f, n);                  pnode_printsystemitem(f, n);
                 break;                  break;
         case NODE_REFENTRY:  
                 pnode_printrefentry(f, n);  
                 break;  
         case NODE_REFNAME:          case NODE_REFNAME:
                 /* More often, these appear inside NODE_REFNAMEDIV. */                  /* More often, these appear inside NODE_REFNAMEDIV. */
                 macro_open(f, "Nm");                  macro_open(f, "Nm");
Line 1319  pnode_print(struct format *f, struct pnode *n)
Line 1143  pnode_print(struct format *f, struct pnode *n)
         case NODE_REFSYNOPSISDIV:          case NODE_REFSYNOPSISDIV:
                 pnode_printrefsynopsisdiv(f, n);                  pnode_printrefsynopsisdiv(f, n);
                 break;                  break;
         case NODE_PREFACE:  
         case NODE_SECTION:          case NODE_SECTION:
         case NODE_SIMPLESECT:          case NODE_SIMPLESECT:
         case NODE_APPENDIX:          case NODE_APPENDIX:
         case NODE_LEGALNOTICE:  
         case NODE_NOTE:          case NODE_NOTE:
         case NODE_TIP:  
         case NODE_CAUTION:  
         case NODE_WARNING:  
                 pnode_printsection(f, n);                  pnode_printsection(f, n);
                 break;                  break;
         case NODE_REPLACEABLE:          case NODE_REPLACEABLE:
Line 1343  pnode_print(struct format *f, struct pnode *n)
Line 1162  pnode_print(struct format *f, struct pnode *n)
                 else                  else
                         print_text(f, "_", 0);                          print_text(f, "_", 0);
                 if ((nc = TAILQ_FIRST(&n->childq)) != NULL)                  if ((nc = TAILQ_FIRST(&n->childq)) != NULL)
                         nc->spc = 0;                          nc->flags &= ~(NFLAG_LINE | NFLAG_SPC);
                 break;                  break;
         case NODE_SUPERSCRIPT:          case NODE_SUPERSCRIPT:
                 fputs("\\(ha", stdout);                  fputs("\\(ha", stdout);
                 if ((nc = TAILQ_FIRST(&n->childq)) != NULL)                  if ((nc = TAILQ_FIRST(&n->childq)) != NULL)
                         nc->spc = 0;                          nc->flags &= ~(NFLAG_LINE | NFLAG_SPC);
                 break;                  break;
         case NODE_TEXT:          case NODE_TEXT:
         case NODE_ESCAPE:          case NODE_ESCAPE:
Line 1379  pnode_print(struct format *f, struct pnode *n)
Line 1198  pnode_print(struct format *f, struct pnode *n)
         case NODE_XREF:          case NODE_XREF:
                 pnode_printxref(f, n);                  pnode_printxref(f, n);
                 break;                  break;
           case NODE_CAUTION:
           case NODE_LEGALNOTICE:
           case NODE_PREFACE:
           case NODE_TIP:
           case NODE_WARNING:
                   abort();
         default:          default:
                 break;                  break;
         }          }
   
           if (pnode_class(n->node) == CLASS_NOFILL)
                   f->nofill++;
   
         TAILQ_FOREACH(nc, &n->childq, child)          TAILQ_FOREACH(nc, &n->childq, child)
                 pnode_print(f, nc);                  pnode_print(f, nc);
   
Line 1463  pnode_print(struct format *f, struct pnode *n)
Line 1291  pnode_print(struct format *f, struct pnode *n)
                 } else                  } else
                         f->flags &= ~FMT_IMPL;                          f->flags &= ~FMT_IMPL;
                 break;                  break;
         case NODE_PREFACE:  
         case NODE_SECTION:          case NODE_SECTION:
           case NODE_SIMPLESECT:
         case NODE_APPENDIX:          case NODE_APPENDIX:
         case NODE_LEGALNOTICE:  
         case NODE_NOTE:          case NODE_NOTE:
         case NODE_TIP:                  if (n->parent != NULL)
         case NODE_CAUTION:                          f->level--;
         case NODE_WARNING:  
                 f->level--;  
                 break;                  break;
         case NODE_BLOCKQUOTE:          case NODE_BLOCKQUOTE:
         case NODE_LITERALLAYOUT:          case NODE_LITERALLAYOUT:
Line 1480  pnode_print(struct format *f, struct pnode *n)
Line 1305  pnode_print(struct format *f, struct pnode *n)
         case NODE_SYNOPSIS:          case NODE_SYNOPSIS:
                 f->parastate = PARA_HAVE;                  f->parastate = PARA_HAVE;
                 macro_line(f, "Ed");                  macro_line(f, "Ed");
                   f->parastate = PARA_WANT;
                 break;                  break;
         case NODE_TITLE:          case NODE_TITLE:
         case NODE_SUBTITLE:          case NODE_SUBTITLE:
                 f->parastate = PARA_WANT;                  f->parastate = PARA_WANT;
                 break;                  break;
           case NODE_YEAR:
                   if ((nn = TAILQ_NEXT(n, child)) != NULL &&
                       nn->node == NODE_YEAR &&
                       f->linestate == LINE_TEXT) {
                           print_text(f, ",", 0);
                           nn->flags |= NFLAG_SPC;
                           if ((nc = TAILQ_FIRST(&nn->childq)) != NULL)
                                   nc->flags |= NFLAG_SPC;
                   }
         default:          default:
                 break;                  break;
         }          }
         f->flags &= ~FMT_ARG;          f->flags &= ~FMT_ARG;
           if (pnode_class(n->node) == CLASS_NOFILL)
                   f->nofill--;
 }  }
   
 void  void
Line 1496  ptree_print_mdoc(struct ptree *tree)
Line 1333  ptree_print_mdoc(struct ptree *tree)
 {  {
         struct format    formatter;          struct format    formatter;
   
         formatter.level = 0;          formatter.level = formatter.nofill = 0;
         formatter.linestate = LINE_NEW;          formatter.linestate = LINE_NEW;
         formatter.parastate = PARA_HAVE;          formatter.parastate = PARA_HAVE;
         pnode_printprologue(&formatter, tree->root);          pnode_printprologue(&formatter, tree->root);

Legend:
Removed from v.1.134  
changed lines
  Added in v.1.148

CVSweb