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

Diff for /mandoc/main.c between version 1.60 and 1.61

version 1.60, 2010/03/22 20:43:00 version 1.61, 2010/04/12 19:27:22
Line 228  static void
Line 228  static void
 usage(void)  usage(void)
 {  {
   
         (void)fprintf(stderr, "usage: %s [-V] [-foption...] "          (void)fprintf(stderr, "usage: %s [-V] [-foption] "
                         "[-mformat] [-Ooption] [-Toutput] "                          "[-mformat] [-Ooption] [-Toutput] "
                         "[-Werr...]\n", progname);                          "[-Werr] [file...]\n", progname);
         exit(EXIT_FAILURE);          exit(EXIT_FAILURE);
 }  }
   
Line 380  fdesc(struct buf *blk, struct buf *ln, struct curparse
Line 380  fdesc(struct buf *blk, struct buf *ln, struct curparse
   
                                 comment = 1;                                  comment = 1;
                                 pos -= 2;                                  pos -= 2;
                                   for (; pos > 0; --pos) {
                                           if (ln->buf[pos] != ' ')
                                                   break;
                                           if (ln->buf[pos - 1] == '\\')
                                                   break;
                                   }
                                 continue;                                  continue;
                         }                          }
   

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb