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

Diff for /mandoc/man_macro.c between version 1.5 and 1.8

version 1.5, 2009/03/25 15:17:49 version 1.8, 2009/03/26 11:16:21
Line 18 
Line 18 
  */   */
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h> /* XXX */  
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
Line 56  man_macro(struct man *man, int tok, int line, 
Line 55  man_macro(struct man *man, int tok, int line, 
                 man->next = MAN_NEXT_SIBLING;                  man->next = MAN_NEXT_SIBLING;
         }          }
   
         for ( ; man->last && man->last != n;          /*
                         man->last = man->last->parent)           * Note that when TH is pruned, we'll be back at the root, so
            * make sure that we don't clobber as its sibling.
            */
   
           for ( ; man->last; man->last = man->last->parent) {
                   if (man->last == n)
                           break;
                   if (man->last->type == MAN_ROOT)
                           break;
                 if ( ! man_valid_post(man))                  if ( ! man_valid_post(man))
                         return(0);                          return(0);
                   if ( ! man_action_post(man))
                           return(0);
           }
   
         assert(man->last);          assert(man->last);
         if ( ! man_valid_post(man))  
           /*
            * Same here regarding whether we're back at the root.
            */
   
           if (man->last->type != MAN_ROOT && ! man_valid_post(man))
                 return(0);                  return(0);
         man->next = MAN_NEXT_SIBLING;          if (man->last->type != MAN_ROOT && ! man_action_post(man))
                   return(0);
           if (man->last->type != MAN_ROOT)
                   man->next = MAN_NEXT_SIBLING;
   
         return(1);          return(1);
 }  }
Line 74  int
Line 92  int
 man_macroend(struct man *m)  man_macroend(struct man *m)
 {  {
   
         /* TODO: validate & actions. */          for ( ; m->last && m->last != m->first;
                           m->last = m->last->parent) {
                   if ( ! man_valid_post(m))
                           return(0);
                   if ( ! man_action_post(m))
                           return(0);
           }
           assert(m->last == m->first);
   
           if ( ! man_valid_post(m))
                   return(0);
           if ( ! man_action_post(m))
                   return(0);
   
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 man_args(struct man *man, int line,  man_args(struct man *m, int line,
                 int *pos, char *buf, char **v)                  int *pos, char *buf, char **v)
 {  {
   
Line 114  man_args(struct man *man, int line, 
Line 145  man_args(struct man *man, int line, 
                 if (buf[*pos])                  if (buf[*pos])
                         return(1);                          return(1);
   
                 warnx("tail whitespace");                  if ( ! man_vwarn(m, line, *pos, "trailing spaces"))
                 return(-1);                          return(-1);
   
                   return(1);
         }          }
   
         /*          /*
Line 130  man_args(struct man *man, int line, 
Line 163  man_args(struct man *man, int line, 
                 (*pos)++;                  (*pos)++;
   
         if (0 == buf[*pos]) {          if (0 == buf[*pos]) {
                 warnx("unterminated quotation");                  if ( ! man_vwarn(m, line, *pos, "unterminated quote"))
                 return(-1);                          return(-1);
                   return(1);
         }          }
   
         buf[(*pos)++] = 0;          buf[(*pos)++] = 0;
Line 144  man_args(struct man *man, int line, 
Line 178  man_args(struct man *man, int line, 
         if (buf[*pos])          if (buf[*pos])
                 return(1);                  return(1);
   
         warnx("tail whitespace");          if ( ! man_vwarn(m, line, *pos, "trailing spaces"))
         return(-1);                  return(-1);
           return(1);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.8

CVSweb