aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandocdb.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-12-04 18:31:20 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-12-04 18:31:20 +0000
commited87b2a8e96af89d3a3b9c08e891054f52cfa71b (patch)
tree194d76d1c0a7ce50f36057c0d7e6443a200b3d23 /mandocdb.c
parentee9e735663e042bcab66695d910d0436c461690e (diff)
downloadmandoc-ed87b2a8e96af89d3a3b9c08e891054f52cfa71b.tar.gz
mandoc-ed87b2a8e96af89d3a3b9c08e891054f52cfa71b.tar.zst
mandoc-ed87b2a8e96af89d3a3b9c08e891054f52cfa71b.zip
in the SYNOPSIS, add .Fo and first .Fn arguments to the names table
Diffstat (limited to 'mandocdb.c')
-rw-r--r--mandocdb.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/mandocdb.c b/mandocdb.c
index 986c6a50..e303e6f2 100644
--- a/mandocdb.c
+++ b/mandocdb.c
@@ -1,4 +1,4 @@
-/* $Id: mandocdb.c,v 1.172 2014/12/04 17:36:00 schwarze Exp $ */
+/* $Id: mandocdb.c,v 1.173 2014/12/04 18:31:20 schwarze Exp $ */
/*
* Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -165,6 +165,8 @@ static int parse_mdoc_Fd(struct mpage *, const struct mdoc_meta *,
const struct mdoc_node *);
static int parse_mdoc_Fn(struct mpage *, const struct mdoc_meta *,
const struct mdoc_node *);
+static int parse_mdoc_Fo(struct mpage *, const struct mdoc_meta *,
+ const struct mdoc_node *);
static int parse_mdoc_Nd(struct mpage *, const struct mdoc_meta *,
const struct mdoc_node *);
static int parse_mdoc_Nm(struct mpage *, const struct mdoc_meta *,
@@ -300,7 +302,7 @@ static const struct mdoc_handler mdocs[MDOC_MAX] = {
{ NULL, 0 }, /* Ux */
{ NULL, 0 }, /* Xc */
{ NULL, 0 }, /* Xo */
- { parse_mdoc_head, 0 }, /* Fo */
+ { parse_mdoc_Fo, 0 }, /* Fo */
{ NULL, 0 }, /* Fc */
{ NULL, 0 }, /* Oo */
{ NULL, 0 }, /* Oc */
@@ -1651,6 +1653,8 @@ parse_mdoc_Fn(struct mpage *mpage, const struct mdoc_meta *meta,
cp++;
putkey(mpage, cp, TYPE_Fn);
+ if (n->sec == SEC_SYNOPSIS)
+ putkey(mpage, cp, NAME_SYN);
if (n->string < cp)
putkeys(mpage, n->string, cp - n->string, TYPE_Ft);
@@ -1663,6 +1667,17 @@ parse_mdoc_Fn(struct mpage *mpage, const struct mdoc_meta *meta,
}
static int
+parse_mdoc_Fo(struct mpage *mpage, const struct mdoc_meta *meta,
+ const struct mdoc_node *n)
+{
+
+ putmdockey(mpage, n->child, TYPE_Fn);
+ if (n->sec == SEC_SYNOPSIS)
+ putmdockey(mpage, n->child, NAME_SYN);
+ return(0);
+}
+
+static int
parse_mdoc_Xr(struct mpage *mpage, const struct mdoc_meta *meta,
const struct mdoc_node *n)
{