=================================================================== RCS file: /cvs/mandoc/Attic/argv.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -r1.18 -r1.19 --- mandoc/Attic/argv.c 2009/01/20 12:51:28 1.18 +++ mandoc/Attic/argv.c 2009/01/20 13:05:28 1.19 @@ -1,4 +1,4 @@ -/* $Id: argv.c,v 1.18 2009/01/20 12:51:28 kristaps Exp $ */ +/* $Id: argv.c,v 1.19 2009/01/20 13:05:28 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -148,18 +148,18 @@ mdoc_args(struct mdoc *mdoc, int line, int *pos, char buf[(*pos)++] = 0; if (0 == buf[*pos]) - return(ARGS_WORD); + return(ARGS_QWORD); while (buf[*pos] && isspace(buf[*pos])) (*pos)++; if (buf[*pos]) - return(ARGS_WORD); + return(ARGS_QWORD); if ( ! mdoc_pwarn(mdoc, line, *pos, WARN_COMPAT, "whitespace at end-of-line")) return(ARGS_ERROR); - return(ARGS_WORD); + return(ARGS_QWORD); }