From ffd36f32dbbe968941923914f7f8630c797a1206 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 20 Jan 2009 13:05:28 +0000 Subject: Quoted-literals handled correctly. --- argv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'argv.c') diff --git a/argv.c b/argv.c index b0a33c13..bd050efb 100644 --- a/argv.c +++ b/argv.c @@ -148,18 +148,18 @@ mdoc_args(struct mdoc *mdoc, int line, int *pos, char *buf, int fl, char **v) 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); } -- cgit