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

Diff for /mandoc/man.c between version 1.55 and 1.56

version 1.55, 2010/03/27 10:04:56 version 1.56, 2010/03/27 10:21:38
Line 492  man_pmacro(struct man *m, int ln, char *buf)
Line 492  man_pmacro(struct man *m, int ln, char *buf)
   
         i = 1;          i = 1;
   
           /*
            * Skip whitespace between the control character and initial
            * text.  "Whitespace" is both spaces and tabs.
            */
         if (' ' == buf[i]) {          if (' ' == 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])
                         goto out;                          goto out;

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56

CVSweb