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

Diff for /mandoc/man.c between version 1.150 and 1.151

version 1.150, 2015/04/02 21:36:49 version 1.151, 2015/04/02 22:48:17
Line 50  const char *const __man_macronames[MAN_MAX] = {
Line 50  const char *const __man_macronames[MAN_MAX] = {
 const   char * const *man_macronames = __man_macronames;  const   char * const *man_macronames = __man_macronames;
   
 static  void             man_alloc1(struct man *);  static  void             man_alloc1(struct man *);
 static  void             man_breakscope(struct man *, enum mant);  static  void             man_breakscope(struct man *, int);
 static  void             man_descope(struct man *, int, int);  static  void             man_descope(struct man *, int, int);
 static  void             man_free1(struct man *);  static  void             man_free1(struct man *);
 static  struct man_node *man_node_alloc(struct man *, int, int,  static  struct roff_node *man_node_alloc(struct man *, int, int,
                                 enum roff_type, enum mant);                                  enum roff_type, int);
 static  void             man_node_append(struct man *, struct man_node *);  static  void             man_node_append(struct man *, struct roff_node *);
 static  void             man_node_free(struct man_node *);  static  void             man_node_free(struct roff_node *);
 static  void             man_node_unlink(struct man *,  static  void             man_node_unlink(struct man *, struct roff_node *);
                                 struct man_node *);  
 static  int              man_ptext(struct man *, int, char *, int);  static  int              man_ptext(struct man *, int, char *, int);
 static  int              man_pmacro(struct man *, int, char *, int);  static  int              man_pmacro(struct man *, int, char *, int);
   
   
 const struct man_node *  const struct roff_node *
 man_node(const struct man *man)  man_node(const struct man *man)
 {  {
   
Line 149  man_alloc1(struct man *man)
Line 148  man_alloc1(struct man *man)
   
         memset(&man->meta, 0, sizeof(struct man_meta));          memset(&man->meta, 0, sizeof(struct man_meta));
         man->flags = 0;          man->flags = 0;
         man->last = mandoc_calloc(1, sizeof(struct man_node));          man->last = mandoc_calloc(1, sizeof(*man->last));
         man->first = man->last;          man->first = man->last;
         man->last->type = ROFFT_ROOT;          man->last->type = ROFFT_ROOT;
         man->last->tok = MAN_MAX;          man->last->tok = MAN_MAX;
Line 158  man_alloc1(struct man *man)
Line 157  man_alloc1(struct man *man)
   
   
 static void  static void
 man_node_append(struct man *man, struct man_node *p)  man_node_append(struct man *man, struct roff_node *p)
 {  {
   
         assert(man->last);          assert(man->last);
Line 213  man_node_append(struct man *man, struct man_node *p)
Line 212  man_node_append(struct man *man, struct man_node *p)
         }          }
 }  }
   
 static struct man_node *  static struct roff_node *
 man_node_alloc(struct man *man, int line, int pos,  man_node_alloc(struct man *man, int line, int pos,
                 enum roff_type type, enum mant tok)                  enum roff_type type, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = mandoc_calloc(1, sizeof(struct man_node));          p = mandoc_calloc(1, sizeof(*p));
         p->line = line;          p->line = line;
         p->pos = pos;          p->pos = pos;
         p->type = type;          p->type = type;
Line 232  man_node_alloc(struct man *man, int line, int pos,
Line 231  man_node_alloc(struct man *man, int line, int pos,
 }  }
   
 void  void
 man_elem_alloc(struct man *man, int line, int pos, enum mant tok)  man_elem_alloc(struct man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_ELEM, tok);          p = man_node_alloc(man, line, pos, ROFFT_ELEM, tok);
         man_node_append(man, p);          man_node_append(man, p);
Line 242  man_elem_alloc(struct man *man, int line, int pos, enu
Line 241  man_elem_alloc(struct man *man, int line, int pos, enu
 }  }
   
 void  void
 man_head_alloc(struct man *man, int line, int pos, enum mant tok)  man_head_alloc(struct man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_HEAD, tok);          p = man_node_alloc(man, line, pos, ROFFT_HEAD, tok);
         man_node_append(man, p);          man_node_append(man, p);
Line 252  man_head_alloc(struct man *man, int line, int pos, enu
Line 251  man_head_alloc(struct man *man, int line, int pos, enu
 }  }
   
 void  void
 man_body_alloc(struct man *man, int line, int pos, enum mant tok)  man_body_alloc(struct man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_BODY, tok);          p = man_node_alloc(man, line, pos, ROFFT_BODY, tok);
         man_node_append(man, p);          man_node_append(man, p);
Line 262  man_body_alloc(struct man *man, int line, int pos, enu
Line 261  man_body_alloc(struct man *man, int line, int pos, enu
 }  }
   
 void  void
 man_block_alloc(struct man *man, int line, int pos, enum mant tok)  man_block_alloc(struct man *man, int line, int pos, int tok)
 {  {
         struct man_node *p;          struct roff_node *p;
   
         p = man_node_alloc(man, line, pos, ROFFT_BLOCK, tok);          p = man_node_alloc(man, line, pos, ROFFT_BLOCK, tok);
         man_node_append(man, p);          man_node_append(man, p);
Line 274  man_block_alloc(struct man *man, int line, int pos, en
Line 273  man_block_alloc(struct man *man, int line, int pos, en
 void  void
 man_word_alloc(struct man *man, int line, int pos, const char *word)  man_word_alloc(struct man *man, int line, int pos, const char *word)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         n = man_node_alloc(man, line, pos, ROFFT_TEXT, MAN_MAX);          n = man_node_alloc(man, line, pos, ROFFT_TEXT, MAN_MAX);
         n->string = roff_strdup(man->roff, word);          n->string = roff_strdup(man->roff, word);
Line 285  man_word_alloc(struct man *man, int line, int pos, con
Line 284  man_word_alloc(struct man *man, int line, int pos, con
 void  void
 man_word_append(struct man *man, const char *word)  man_word_append(struct man *man, const char *word)
 {  {
         struct man_node *n;          struct roff_node *n;
         char            *addstr, *newstr;          char            *addstr, *newstr;
   
         n = man->last;          n = man->last;
Line 302  man_word_append(struct man *man, const char *word)
Line 301  man_word_append(struct man *man, const char *word)
  * node from its context; for that, see man_node_unlink().   * node from its context; for that, see man_node_unlink().
  */   */
 static void  static void
 man_node_free(struct man_node *p)  man_node_free(struct roff_node *p)
 {  {
   
         free(p->string);          free(p->string);
Line 310  man_node_free(struct man_node *p)
Line 309  man_node_free(struct man_node *p)
 }  }
   
 void  void
 man_node_delete(struct man *man, struct man_node *p)  man_node_delete(struct man *man, struct roff_node *p)
 {  {
   
         while (p->child)          while (p->child)
Line 323  man_node_delete(struct man *man, struct man_node *p)
Line 322  man_node_delete(struct man *man, struct man_node *p)
 void  void
 man_addeqn(struct man *man, const struct eqn *ep)  man_addeqn(struct man *man, const struct eqn *ep)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         n = man_node_alloc(man, ep->ln, ep->pos, ROFFT_EQN, MAN_MAX);          n = man_node_alloc(man, ep->ln, ep->pos, ROFFT_EQN, MAN_MAX);
         n->eqn = ep;          n->eqn = ep;
Line 337  man_addeqn(struct man *man, const struct eqn *ep)
Line 336  man_addeqn(struct man *man, const struct eqn *ep)
 void  void
 man_addspan(struct man *man, const struct tbl_span *sp)  man_addspan(struct man *man, const struct tbl_span *sp)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         man_breakscope(man, MAN_MAX);          man_breakscope(man, MAN_MAX);
         n = man_node_alloc(man, sp->line, 0, ROFFT_TBL, MAN_MAX);          n = man_node_alloc(man, sp->line, 0, ROFFT_TBL, MAN_MAX);
Line 438  man_ptext(struct man *man, int line, char *buf, int of
Line 437  man_ptext(struct man *man, int line, char *buf, int of
 static int  static int
 man_pmacro(struct man *man, int ln, char *buf, int offs)  man_pmacro(struct man *man, int ln, char *buf, int offs)
 {  {
         struct man_node *n;          struct roff_node *n;
         const char      *cp;          const char      *cp;
         enum mant        tok;          int              tok;
         int              i, ppos;          int              i, ppos;
         int              bline;          int              bline;
         char             mac[5];          char             mac[5];
Line 536  man_pmacro(struct man *man, int ln, char *buf, int off
Line 535  man_pmacro(struct man *man, int ln, char *buf, int off
 }  }
   
 void  void
 man_breakscope(struct man *man, enum mant tok)  man_breakscope(struct man *man, int tok)
 {  {
         struct man_node *n;          struct roff_node *n;
   
         /*          /*
          * An element next line scope is open,           * An element next line scope is open,
Line 596  man_breakscope(struct man *man, enum mant tok)
Line 595  man_breakscope(struct man *man, enum mant tok)
  * point will also be adjusted accordingly.   * point will also be adjusted accordingly.
  */   */
 static void  static void
 man_node_unlink(struct man *man, struct man_node *n)  man_node_unlink(struct man *man, struct roff_node *n)
 {  {
   
         /* Adjust siblings. */          /* Adjust siblings. */
Line 641  man_mparse(const struct man *man)
Line 640  man_mparse(const struct man *man)
 }  }
   
 void  void
 man_deroff(char **dest, const struct man_node *n)  man_deroff(char **dest, const struct roff_node *n)
 {  {
         char    *cp;          char    *cp;
         size_t   sz;          size_t   sz;

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.151

CVSweb