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

Diff for /mandoc/mdoc.c between version 1.239 and 1.240

version 1.239, 2015/04/02 21:36:50 version 1.240, 2015/04/02 22:48:17
Line 83  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {
Line 83  const char *const __mdoc_argnames[MDOC_ARG_MAX] = {
 const   char * const *mdoc_macronames = __mdoc_macronames;  const   char * const *mdoc_macronames = __mdoc_macronames;
 const   char * const *mdoc_argnames = __mdoc_argnames;  const   char * const *mdoc_argnames = __mdoc_argnames;
   
 static  void              mdoc_node_free(struct mdoc_node *);  static  void              mdoc_node_free(struct roff_node *);
 static  void              mdoc_node_unlink(struct mdoc *,  static  void              mdoc_node_unlink(struct mdoc *,
                                 struct mdoc_node *);                                  struct roff_node *);
 static  void              mdoc_free1(struct mdoc *);  static  void              mdoc_free1(struct mdoc *);
 static  void              mdoc_alloc1(struct mdoc *);  static  void              mdoc_alloc1(struct mdoc *);
 static  struct mdoc_node *node_alloc(struct mdoc *, int, int,  static  struct roff_node *node_alloc(struct mdoc *, int, int,
                                 enum mdoct, enum roff_type);                                  int, enum roff_type);
 static  void              node_append(struct mdoc *, struct mdoc_node *);  static  void              node_append(struct mdoc *, struct roff_node *);
 static  int               mdoc_ptext(struct mdoc *, int, char *, int);  static  int               mdoc_ptext(struct mdoc *, int, char *, int);
 static  int               mdoc_pmacro(struct mdoc *, int, char *, int);  static  int               mdoc_pmacro(struct mdoc *, int, char *, int);
   
   
 const struct mdoc_node *  const struct roff_node *
 mdoc_node(const struct mdoc *mdoc)  mdoc_node(const struct mdoc *mdoc)
 {  {
   
Line 137  mdoc_alloc1(struct mdoc *mdoc)
Line 137  mdoc_alloc1(struct mdoc *mdoc)
         memset(&mdoc->meta, 0, sizeof(struct mdoc_meta));          memset(&mdoc->meta, 0, sizeof(struct mdoc_meta));
         mdoc->flags = 0;          mdoc->flags = 0;
         mdoc->lastnamed = mdoc->lastsec = SEC_NONE;          mdoc->lastnamed = mdoc->lastsec = SEC_NONE;
         mdoc->last = mandoc_calloc(1, sizeof(struct mdoc_node));          mdoc->last = mandoc_calloc(1, sizeof(*mdoc->last));
         mdoc->first = mdoc->last;          mdoc->first = mdoc->last;
         mdoc->last->type = ROFFT_ROOT;          mdoc->last->type = ROFFT_ROOT;
         mdoc->last->tok = MDOC_MAX;          mdoc->last->tok = MDOC_MAX;
Line 201  mdoc_endparse(struct mdoc *mdoc)
Line 201  mdoc_endparse(struct mdoc *mdoc)
 void  void
 mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
 {  {
         struct mdoc_node *n;          struct roff_node *n;
   
         n = node_alloc(mdoc, ep->ln, ep->pos, MDOC_MAX, ROFFT_EQN);          n = node_alloc(mdoc, ep->ln, ep->pos, MDOC_MAX, ROFFT_EQN);
         n->eqn = ep;          n->eqn = ep;
Line 214  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
Line 214  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
 void  void
 mdoc_addspan(struct mdoc *mdoc, const struct tbl_span *sp)  mdoc_addspan(struct mdoc *mdoc, const struct tbl_span *sp)
 {  {
         struct mdoc_node *n;          struct roff_node *n;
   
         n = node_alloc(mdoc, sp->line, 0, MDOC_MAX, ROFFT_TBL);          n = node_alloc(mdoc, sp->line, 0, MDOC_MAX, ROFFT_TBL);
         n->span = sp;          n->span = sp;
Line 277  mdoc_macro(MACRO_PROT_ARGS)
Line 277  mdoc_macro(MACRO_PROT_ARGS)
   
   
 static void  static void
 node_append(struct mdoc *mdoc, struct mdoc_node *p)  node_append(struct mdoc *mdoc, struct roff_node *p)
 {  {
   
         assert(mdoc->last);          assert(mdoc->last);
Line 354  node_append(struct mdoc *mdoc, struct mdoc_node *p)
Line 354  node_append(struct mdoc *mdoc, struct mdoc_node *p)
         }          }
 }  }
   
 static struct mdoc_node *  static struct roff_node *
 node_alloc(struct mdoc *mdoc, int line, int pos,  node_alloc(struct mdoc *mdoc, int line, int pos,
                 enum mdoct tok, enum roff_type type)          int tok, enum roff_type type)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         p = mandoc_calloc(1, sizeof(struct mdoc_node));          p = mandoc_calloc(1, sizeof(*p));
         p->sec = mdoc->lastsec;          p->sec = mdoc->lastsec;
         p->line = line;          p->line = line;
         p->pos = pos;          p->pos = pos;
Line 381  node_alloc(struct mdoc *mdoc, int line, int pos,
Line 381  node_alloc(struct mdoc *mdoc, int line, int pos,
 }  }
   
 void  void
 mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok)  mdoc_tail_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         p = node_alloc(mdoc, line, pos, tok, ROFFT_TAIL);          p = node_alloc(mdoc, line, pos, tok, ROFFT_TAIL);
         node_append(mdoc, p);          node_append(mdoc, p);
         mdoc->next = MDOC_NEXT_CHILD;          mdoc->next = MDOC_NEXT_CHILD;
 }  }
   
 struct mdoc_node *  struct roff_node *
 mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok)  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         assert(mdoc->first);          assert(mdoc->first);
         assert(mdoc->last);          assert(mdoc->last);
Line 403  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, 
Line 403  mdoc_head_alloc(struct mdoc *mdoc, int line, int pos, 
         return(p);          return(p);
 }  }
   
 struct mdoc_node *  struct roff_node *
 mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok)  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, int tok)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         p = node_alloc(mdoc, line, pos, tok, ROFFT_BODY);          p = node_alloc(mdoc, line, pos, tok, ROFFT_BODY);
         node_append(mdoc, p);          node_append(mdoc, p);
Line 414  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
Line 414  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
         return(p);          return(p);
 }  }
   
 struct mdoc_node *  struct roff_node *
 mdoc_endbody_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok,  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int pos, int tok,
                 struct mdoc_node *body, enum mdoc_endbody end)                  struct roff_node *body, enum mdoc_endbody end)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         body->flags |= MDOC_ENDED;          body->flags |= MDOC_ENDED;
         body->parent->flags |= MDOC_ENDED;          body->parent->flags |= MDOC_ENDED;
Line 431  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int po
Line 431  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int po
         return(p);          return(p);
 }  }
   
 struct mdoc_node *  struct roff_node *
 mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
                 enum mdoct tok, struct mdoc_arg *args)          int tok, struct mdoc_arg *args)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         p = node_alloc(mdoc, line, pos, tok, ROFFT_BLOCK);          p = node_alloc(mdoc, line, pos, tok, ROFFT_BLOCK);
         p->args = args;          p->args = args;
Line 464  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
Line 464  mdoc_block_alloc(struct mdoc *mdoc, int line, int pos,
   
 void  void
 mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
                 enum mdoct tok, struct mdoc_arg *args)          int tok, struct mdoc_arg *args)
 {  {
         struct mdoc_node *p;          struct roff_node *p;
   
         p = node_alloc(mdoc, line, pos, tok, ROFFT_ELEM);          p = node_alloc(mdoc, line, pos, tok, ROFFT_ELEM);
         p->args = args;          p->args = args;
Line 487  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
Line 487  mdoc_elem_alloc(struct mdoc *mdoc, int line, int pos,
 void  void
 mdoc_word_alloc(struct mdoc *mdoc, int line, int pos, const char *p)  mdoc_word_alloc(struct mdoc *mdoc, int line, int pos, const char *p)
 {  {
         struct mdoc_node *n;          struct roff_node *n;
   
         n = node_alloc(mdoc, line, pos, MDOC_MAX, ROFFT_TEXT);          n = node_alloc(mdoc, line, pos, MDOC_MAX, ROFFT_TEXT);
         n->string = roff_strdup(mdoc->roff, p);          n->string = roff_strdup(mdoc->roff, p);
Line 498  mdoc_word_alloc(struct mdoc *mdoc, int line, int pos, 
Line 498  mdoc_word_alloc(struct mdoc *mdoc, int line, int pos, 
 void  void
 mdoc_word_append(struct mdoc *mdoc, const char *p)  mdoc_word_append(struct mdoc *mdoc, const char *p)
 {  {
         struct mdoc_node        *n;          struct roff_node        *n;
         char                    *addstr, *newstr;          char                    *addstr, *newstr;
   
         n = mdoc->last;          n = mdoc->last;
Line 511  mdoc_word_append(struct mdoc *mdoc, const char *p)
Line 511  mdoc_word_append(struct mdoc *mdoc, const char *p)
 }  }
   
 static void  static void
 mdoc_node_free(struct mdoc_node *p)  mdoc_node_free(struct roff_node *p)
 {  {
   
         if (p->type == ROFFT_BLOCK || p->type == ROFFT_ELEM)          if (p->type == ROFFT_BLOCK || p->type == ROFFT_ELEM)
Line 524  mdoc_node_free(struct mdoc_node *p)
Line 524  mdoc_node_free(struct mdoc_node *p)
 }  }
   
 static void  static void
 mdoc_node_unlink(struct mdoc *mdoc, struct mdoc_node *n)  mdoc_node_unlink(struct mdoc *mdoc, struct roff_node *n)
 {  {
   
         /* Adjust siblings. */          /* Adjust siblings. */
Line 561  mdoc_node_unlink(struct mdoc *mdoc, struct mdoc_node *
Line 561  mdoc_node_unlink(struct mdoc *mdoc, struct mdoc_node *
 }  }
   
 void  void
 mdoc_node_delete(struct mdoc *mdoc, struct mdoc_node *p)  mdoc_node_delete(struct mdoc *mdoc, struct roff_node *p)
 {  {
   
         while (p->child) {          while (p->child) {
Line 575  mdoc_node_delete(struct mdoc *mdoc, struct mdoc_node *
Line 575  mdoc_node_delete(struct mdoc *mdoc, struct mdoc_node *
 }  }
   
 void  void
 mdoc_node_relink(struct mdoc *mdoc, struct mdoc_node *p)  mdoc_node_relink(struct mdoc *mdoc, struct roff_node *p)
 {  {
   
         mdoc_node_unlink(mdoc, p);          mdoc_node_unlink(mdoc, p);
Line 589  mdoc_node_relink(struct mdoc *mdoc, struct mdoc_node *
Line 589  mdoc_node_relink(struct mdoc *mdoc, struct mdoc_node *
 static int  static int
 mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int offs)  mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int offs)
 {  {
           struct roff_node *n;
         char             *c, *ws, *end;          char             *c, *ws, *end;
         struct mdoc_node *n;  
   
         assert(mdoc->last);          assert(mdoc->last);
         n = mdoc->last;          n = mdoc->last;
Line 705  mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int
Line 705  mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int
 static int  static int
 mdoc_pmacro(struct mdoc *mdoc, int ln, char *buf, int offs)  mdoc_pmacro(struct mdoc *mdoc, int ln, char *buf, int offs)
 {  {
         struct mdoc_node *n;          struct roff_node *n;
         const char       *cp;          const char       *cp;
         enum mdoct        tok;          int               tok;
         int               i, sv;          int               i, sv;
         char              mac[5];          char              mac[5];
   
Line 861  mdoc_isdelim(const char *p)
Line 861  mdoc_isdelim(const char *p)
 }  }
   
 void  void
 mdoc_deroff(char **dest, const struct mdoc_node *n)  mdoc_deroff(char **dest, const struct roff_node *n)
 {  {
         char    *cp;          char    *cp;
         size_t   sz;          size_t   sz;

Legend:
Removed from v.1.239  
changed lines
  Added in v.1.240

CVSweb