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

Diff for /mandoc/mandoc.c between version 1.45 and 1.53

version 1.45, 2011/04/09 15:29:40 version 1.53, 2011/05/24 21:31:23
Line 23 
Line 23 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
   #include <errno.h>
   #include <limits.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
Line 95  numescape(const char *start)
Line 97  numescape(const char *start)
         return(++i);          return(++i);
 }  }
   
 /*  
  * Handle an escaped sequeence.  This should be called with any  
  * string subsequent a `\'.  Pass a pointer to this substring as "end";  
  * it will be set to the supremum of the parsed escape sequence.  If  
  * this returns ESCAPE_ERROR, the string is bogus and should be thrown  
  * away.  If not ESCAPE_ERROR or ESCAPE_IGNORE, "start" is set to the  
  * first relevant character of the substring (font, glyph, whatever) of  
  * length sz.  Both "start" and "sz" may be NULL.  
  */  
 enum mandoc_esc  enum mandoc_esc
 mandoc_escape(const char **end, const char **start, int *sz)  mandoc_escape(const char **end, const char **start, int *sz)
 {  {
Line 116  mandoc_escape(const char **end, const char **start, in
Line 109  mandoc_escape(const char **end, const char **start, in
         rstart = cp;          rstart = cp;
         if (start)          if (start)
                 *start = rstart;                  *start = rstart;
         i = 0;          i = lim = 0;
         gly = ESCAPE_ERROR;          gly = ESCAPE_ERROR;
         term = '\0';          term = numeric = '\0';
         numeric = 0;  
   
         switch ((c = cp[i++])) {          switch ((c = cp[i++])) {
         /*          /*
Line 133  mandoc_escape(const char **end, const char **start, in
Line 125  mandoc_escape(const char **end, const char **start, in
                 break;                  break;
         case ('['):          case ('['):
                 gly = ESCAPE_SPECIAL;                  gly = ESCAPE_SPECIAL;
                   /*
                    * Unicode escapes are defined in groff as \[uXXXX] to
                    * \[u10FFFF], where the contained value must be a valid
                    * Unicode codepoint.  Here, however, only check whether
                    * it's not a zero-width escape.
                    */
                   if ('u' == cp[i] && ']' != cp[i + 1])
                           gly = ESCAPE_UNICODE;
                 term = ']';                  term = ']';
                 break;                  break;
         case ('C'):          case ('C'):
Line 164  mandoc_escape(const char **end, const char **start, in
Line 164  mandoc_escape(const char **end, const char **start, in
                 if (ESCAPE_ERROR == gly)                  if (ESCAPE_ERROR == gly)
                         gly = ESCAPE_IGNORE;                          gly = ESCAPE_IGNORE;
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('*'):  
                 if (ESCAPE_ERROR == gly)  
                         gly = ESCAPE_PREDEF;  
                 /* FALLTHROUGH */  
         case ('f'):          case ('f'):
                 if (ESCAPE_ERROR == gly)                  if (ESCAPE_ERROR == gly)
                         gly = ESCAPE_FONT;                          gly = ESCAPE_FONT;
Line 379  out:
Line 375  out:
                         gly = ESCAPE_FONTROMAN;                          gly = ESCAPE_FONTROMAN;
                         break;                          break;
                 }                  }
                   break;
         case (ESCAPE_SPECIAL):          case (ESCAPE_SPECIAL):
                 if (1 != rlim)                  if (1 != rlim)
                         break;                          break;
Line 467  mandoc_getarg(struct mparse *parse, char **cpp, int ln
Line 464  mandoc_getarg(struct mparse *parse, char **cpp, int ln
   
         /* Quoting can only start with a new word. */          /* Quoting can only start with a new word. */
         start = *cpp;          start = *cpp;
           quoted = 0;
         if ('"' == *start) {          if ('"' == *start) {
                 quoted = 1;                  quoted = 1;
                 start++;                  start++;
         } else          }
                 quoted = 0;  
   
         pairs = 0;          pairs = 0;
         white = 0;          white = 0;
Line 612  mandoc_eos(const char *p, size_t sz, int enclosed)
Line 609  mandoc_eos(const char *p, size_t sz, int enclosed)
         /*          /*
          * End-of-sentence recognition must include situations where           * End-of-sentence recognition must include situations where
          * some symbols, such as `)', allow prior EOS punctuation to           * some symbols, such as `)', allow prior EOS punctuation to
          * propogate outward.           * propagate outward.
          */           */
   
         found = 0;          found = 0;
Line 695  mandoc_getcontrol(const char *cp, int *ppos)
Line 692  mandoc_getcontrol(const char *cp, int *ppos)
         *ppos = pos;          *ppos = pos;
         return(1);          return(1);
 }  }
   
   /*
    * Convert a string to a long that may not be <0.
    * If the string is invalid, or is less than 0, return -1.
    */
   int
   mandoc_strntou(const char *p, size_t sz, int base)
   {
           char             buf[32];
           char            *ep;
           long             v;
   
           if (sz > 31)
                   return(-1);
   
           memcpy(buf, p, sz);
           buf[(int)sz] = '\0';
   
           errno = 0;
           v = strtol(buf, &ep, base);
   
           if (buf[0] == '\0' || *ep != '\0')
                   return(-1);
   
           if ((errno == ERANGE &&
                           (v == LONG_MAX || v == LONG_MIN)) ||
                           (v > INT_MAX || v < 0))
                   return(-1);
   
           return((int)v);
   }
   

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.53

CVSweb