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

Diff for /mandoc/mdoc_argv.c between version 1.53 and 1.55

version 1.53, 2010/06/12 11:58:22 version 1.55, 2010/07/01 22:56:17
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 359  mdoc_args(struct mdoc *m, int line, int *pos, 
Line 359  mdoc_args(struct mdoc *m, int line, int *pos, 
                 if (MDOC_Bl == n->tok)                  if (MDOC_Bl == n->tok)
                         break;                          break;
   
         if (n && LIST_column == n->data.Bl.type) {          assert(n->data.Bl);
           if (n && LIST_column == n->data.Bl->type) {
                 fl |= ARGS_TABSEP;                  fl |= ARGS_TABSEP;
                 fl &= ~ARGS_DELIM;                  fl &= ~ARGS_DELIM;
         }          }

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

CVSweb