diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-19 16:38:48 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-19 16:38:48 +0000 |
commit | 28f9fee25bc0d8859b0400d14433644687182bfb (patch) | |
tree | 5dc36e4ffc02fad26843da2c5000a69caab6f42f /roff.c | |
parent | 0d4d66664cc5e466a53a90e48693b01d4f071cbc (diff) | |
download | mandoc-28f9fee25bc0d8859b0400d14433644687182bfb.tar.gz |
Clean up parsing of delimiters in -mdoc. First, remove the "dowarn"
variable from mandoc_getarg() so that it prints the warning every time.
Then, remove the warning from args_checkpunct(). This way, warnings
are being posted at the correct time. This makes the flag argument to
mdoc_zargs() superfluous, so make it be zero when it's invoked. Finally,
move the args() flags into mdoc_argv.c and make them enums.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1238,7 +1238,7 @@ roff_userdef(ROFF_ARGS) cp = *bufp + pos; for (i = 0; i < 9; i++) arg[i] = '\0' == *cp ? "" : - mandoc_getarg(r->parse, &cp, ln, 1, &pos); + mandoc_getarg(r->parse, &cp, ln, &pos); /* * Expand macro arguments. |