summaryrefslogtreecommitdiffstats
path: root/argv.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-14 05:21:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-14 05:21:58 +0000
commit87db307812249df3244dcee240f1c1684d76014e (patch)
treebe7ea0c02e483030175e6ec26d72268912542f75 /argv.c
parentd3e4f39bf606f28bf5d6a1e1297e356883082b27 (diff)
downloadmandoc-87db307812249df3244dcee240f1c1684d76014e.tar.gz
mdoc.3 refers to local mdoc.7.
mdoc.7 includes its compatibility with system-dependent roff installations.
Diffstat (limited to 'argv.c')
-rw-r--r--argv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/argv.c b/argv.c
index 7228e5f4..d745b336 100644
--- a/argv.c
+++ b/argv.c
@@ -60,7 +60,7 @@ enum merr {
static int argv_a2arg(int, const char *);
static int args(struct mdoc *, int, int *,
char *, int, char **);
-static int argv(struct mdoc *, int, int,
+static int argv(struct mdoc *, int,
struct mdoc_argv *, int *, char *);
static int argv_single(struct mdoc *, int,
struct mdoc_argv *, int *, char *);
@@ -292,7 +292,7 @@ mdoc_argv(struct mdoc *mdoc, int line, int tok,
/* FIXME: whitespace if no value. */
- if ( ! argv(mdoc, tok, line, &tmp, pos, buf))
+ if ( ! argv(mdoc, line, &tmp, pos, buf))
return(ARGV_ERROR);
if (NULL == (arg = *v)) {
@@ -841,7 +841,7 @@ argv_single(struct mdoc *mdoc, int line,
* multiple parameters.
*/
static int
-argv(struct mdoc *mdoc, int tok, int line,
+argv(struct mdoc *mdoc, int line,
struct mdoc_argv *v, int *pos, char *buf)
{