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

Diff for /docbook2mdoc/parse.c between version 1.31 and 1.32

version 1.31, 2019/04/10 14:34:08 version 1.32, 2019/04/11 04:23:22
Line 325  static void
Line 325  static void
 xml_char(struct parse *p, const char *word, int sz)  xml_char(struct parse *p, const char *word, int sz)
 {  {
         struct pnode    *n;          struct pnode    *n;
         size_t           newsz;          size_t           oldsz, newsz;
   
           assert(sz > 0);
         if (p->del > 0)          if (p->del > 0)
                 return;                  return;
   
         if (p->cur == NULL) {          if ((n = p->cur) == NULL) {
                 error_msg(p, "discarding text before document: %.*s", sz, word);                  error_msg(p, "discarding text before document: %.*s", sz, word);
                 return;                  return;
         }          }
   
         if (p->cur->node != NODE_TEXT) {          if (n->node != NODE_TEXT) {
                 if ((n = calloc(1, sizeof(*n))) == NULL)                  if ((n = calloc(1, sizeof(*n))) == NULL)
                         fatal(p);                          fatal(p);
                 n->node = NODE_TEXT;                  n->node = NODE_TEXT;
Line 347  xml_char(struct parse *p, const char *word, int sz)
Line 348  xml_char(struct parse *p, const char *word, int sz)
                 p->cur = n;                  p->cur = n;
         }          }
   
         if (p->tree->flags & TREE_CLOSED &&          if (p->tree->flags & TREE_CLOSED && n->parent == p->tree->root)
             p->cur->parent == p->tree->root)  
                 warn_msg(p, "text after end of document: %.*s", sz, word);                  warn_msg(p, "text after end of document: %.*s", sz, word);
   
         /* Append to the current text node. */          /* Append to the current text node. */
   
         assert(sz >= 0);          oldsz = n->b == NULL ? 0 : strlen(n->b);
         newsz = p->cur->bsz + (p->cur->bsz && (p->flags & PFLAG_SPC)) + sz;          newsz = oldsz + sz;
         if ((p->cur->b = realloc(p->cur->b, newsz + 1)) == NULL)          if (oldsz && (p->flags & PFLAG_SPC))
                   newsz++;
           if ((n->b = realloc(n->b, newsz + 1)) == NULL)
                 fatal(p);                  fatal(p);
         if (p->cur->bsz && (p->flags & PFLAG_SPC))          if (oldsz && (p->flags & PFLAG_SPC))
                 p->cur->b[p->cur->bsz++] = ' ';                  n->b[oldsz++] = ' ';
         memcpy(p->cur->b + p->cur->bsz, word, sz);          memcpy(n->b + oldsz, word, sz);
         p->cur->b[p->cur->bsz = newsz] = '\0';          n->b[newsz] = '\0';
         p->cur->real = p->cur->b;  
         p->flags &= ~PFLAG_SPC;          p->flags &= ~PFLAG_SPC;
 }  }
   
Line 372  static void
Line 373  static void
 pnode_closetext(struct parse *p)  pnode_closetext(struct parse *p)
 {  {
         struct pnode    *n;          struct pnode    *n;
           char            *cp;
   
         if ((n = p->cur) == NULL || n->node != NODE_TEXT)          if ((n = p->cur) == NULL || n->node != NODE_TEXT)
                 return;                  return;
         p->cur = n->parent;          p->cur = n->parent;
         while (n->bsz > 0 && isspace((unsigned char)n->b[n->bsz - 1])) {          for (cp = strchr(n->b, '\0');
                 n->b[--n->bsz] = '\0';              cp > n->b && isspace((unsigned char)cp[-1]);
               *--cp = '\0')
                 p->flags |= PFLAG_SPC;                  p->flags |= PFLAG_SPC;
         }  
 }  }
   
 static void  static void
Line 439  xml_entity(struct parse *p, const char *name)
Line 441  xml_entity(struct parse *p, const char *name)
   
         /* Create, append, and close out an entity node. */          /* Create, append, and close out an entity node. */
         if ((n = calloc(1, sizeof(*n))) == NULL ||          if ((n = calloc(1, sizeof(*n))) == NULL ||
             (n->b = n->real = strdup(entity->roff)) == NULL)              (n->b = strdup(entity->roff)) == NULL)
                 fatal(p);                  fatal(p);
         n->node = NODE_ESCAPE;          n->node = NODE_ESCAPE;
         n->bsz = strlen(n->b);  
         n->spc = (p->flags & PFLAG_SPC) != 0;          n->spc = (p->flags & PFLAG_SPC) != 0;
         n->parent = p->cur;          n->parent = p->cur;
         TAILQ_INIT(&n->childq);          TAILQ_INIT(&n->childq);
Line 680  xml_elem_end(struct parse *p, const char *name)
Line 681  xml_elem_end(struct parse *p, const char *name)
                 p->flags &= ~PFLAG_SPC;                  p->flags &= ~PFLAG_SPC;
                 break;                  break;
         case NODE_DOCTYPE:          case NODE_DOCTYPE:
           case NODE_SBR:
                 p->flags &= ~PFLAG_EEND;                  p->flags &= ~PFLAG_EEND;
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         default:          default:

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32

CVSweb