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

Diff for /mandoc/man.c between version 1.65 and 1.66

version 1.65, 2010/05/12 16:46:28 version 1.66, 2010/05/12 17:08:03
Line 428  man_ptext(struct man *m, int line, char *buf)
Line 428  man_ptext(struct man *m, int line, char *buf)
   
         assert(i);          assert(i);
   
         switch (buf[i - 1]) {          if (mandoc_eos(buf, (size_t)i))
         case ('.'):  
                 if (i > 1 && '\\' == buf[i - 2])  
                         break;  
                 /* FALLTHROUGH */  
         case ('!'):  
                 /* FALLTHROUGH */  
         case ('?'):  
                 m->last->flags |= MAN_EOS;                  m->last->flags |= MAN_EOS;
                 break;  
         default:  
                 break;  
   
         }  
   
 descope:  descope:
         /*          /*

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66

CVSweb