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

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

version 1.56, 2010/03/27 10:21:38 version 1.57, 2010/03/27 10:26:39
Line 496  man_pmacro(struct man *m, int ln, char *buf)
Line 496  man_pmacro(struct man *m, int ln, char *buf)
          * Skip whitespace between the control character and initial           * Skip whitespace between the control character and initial
          * text.  "Whitespace" is both spaces and tabs.           * text.  "Whitespace" is both spaces and tabs.
          */           */
         if (' ' == buf[i]) {          if (' ' == buf[i] || '\t' == buf[i]) {
                 i++;                  i++;
                 while (buf[i] && (' ' == buf[i] || '\t' == buf[i]))                  while (buf[i] && (' ' == buf[i] || '\t' == buf[i]))
                         i++;                          i++;

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

CVSweb