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

Diff for /mandoc/Attic/man_argv.c between version 1.5 and 1.7

version 1.5, 2011/01/03 22:42:37 version 1.7, 2011/03/22 14:33:05
Line 22 
Line 22 
   
 #include <assert.h>  #include <assert.h>
   
   #include "man.h"
 #include "mandoc.h"  #include "mandoc.h"
 #include "libman.h"  #include "libman.h"
 #include "libmandoc.h"  #include "libmandoc.h"
   
   
 int  int
 man_args(struct man *m, int line, int *pos, char *buf, char **v)  man_args(struct man *m, int line, int *pos, char *buf, char **v)
 {  {
Line 39  man_args(struct man *m, int line, int *pos, char *buf,
Line 39  man_args(struct man *m, int line, int *pos, char *buf,
         if ('\0' == *start)          if ('\0' == *start)
                 return(ARGS_EOLN);                  return(ARGS_EOLN);
   
         *v = mandoc_getarg(v, m->msg, m->data, line, pos);          *v = mandoc_getarg(m->parse, v, line, pos);
         return('"' == *start ? ARGS_QWORD : ARGS_WORD);          return('"' == *start ? ARGS_QWORD : ARGS_WORD);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.7

CVSweb