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

Diff for /mandoc/mdoc.c between version 1.159 and 1.160

version 1.159, 2010/07/18 17:00:26 version 1.160, 2010/08/07 20:33:55
Line 764  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
Line 764  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
   
         i = offs;          i = offs;
   
         /* Accept whitespace after the initial control char. */          /* Accept tabs/whitespace after the initial control char. */
   
         if (' ' == buf[i]) {          if (' ' == buf[i] || '\t' == buf[i]) {
                 i++;                  i++;
                 while (buf[i] && ' ' == buf[i])                  while (buf[i] && (' ' == buf[i] || '\t' == buf[i]))
                         i++;                          i++;
                 if ('\0' == buf[i])                  if ('\0' == buf[i])
                         return(1);                          return(1);
Line 776  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
Line 776  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
   
         sv = i;          sv = i;
   
         /* Copy the first word into a nil-terminated buffer. */          /*
            * Copy the first word into a nil-terminated buffer.  Stop
            * copying when a tab, space, or eoln is encountered.
            */
   
         for (j = 0; j < 4; j++, i++) {          for (j = 0; j < 4; j++, i++) {
                 if ('\0' == (mac[j] = buf[i]))                  if ('\0' == (mac[j] = buf[i]))
                         break;                          break;
                 else if (' ' == buf[i])                  else if (' ' == buf[i] || '\t' == buf[i])
                         break;                          break;
   
                 /* Check for invalid characters. */                  /* Check for invalid characters. */
                   /* TODO: remove me, already done in main.c. */
   
                 if (isgraph((u_char)buf[i]))                  if (isgraph((u_char)buf[i]))
                         continue;                          continue;
Line 807  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
Line 811  mdoc_pmacro(struct mdoc *m, int ln, char *buf, int off
                 return(1);                  return(1);
         }          }
   
         /* The macro is sane.  Jump to the next word. */          /* Disregard the first trailing tab, if applicable. */
   
           if ('\t' == buf[i])
                   i++;
   
           /* Jump to the next non-whitespace word. */
   
         while (buf[i] && ' ' == buf[i])          while (buf[i] && ' ' == buf[i])
                 i++;                  i++;

Legend:
Removed from v.1.159  
changed lines
  Added in v.1.160

CVSweb