=================================================================== RCS file: /cvs/mandoc/Attic/makewhatis.c,v retrieving revision 1.13 retrieving revision 1.15 diff -u -p -r1.13 -r1.15 --- mandoc/Attic/makewhatis.c 2011/07/01 10:17:24 1.13 +++ mandoc/Attic/makewhatis.c 2011/07/01 12:02:44 1.15 @@ -1,4 +1,4 @@ -/* $Id: makewhatis.c,v 1.13 2011/07/01 10:17:24 kristaps Exp $ */ +/* $Id: makewhatis.c,v 1.15 2011/07/01 12:02:44 kristaps Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -56,6 +56,7 @@ #define TYPE_DESC 0x100 #define TYPE_XREF 0x200 #define TYPE_PATH 0x400 +#define TYPE_ENV 0x800 /* Buffer for storing growable data. */ @@ -76,7 +77,7 @@ struct buf { const struct mdoc_meta *m static void buf_appendmdoc(struct buf *, - const struct mdoc_node *); + const struct mdoc_node *, int); static void buf_append(struct buf *, const char *); static void buf_appendb(struct buf *, const void *, size_t); @@ -86,6 +87,7 @@ static int pman_node(MAN_ARGS); static void pmdoc_node(MDOC_ARGS); static void pmdoc_An(MDOC_ARGS); static void pmdoc_Cd(MDOC_ARGS); +static void pmdoc_Ev(MDOC_ARGS); static void pmdoc_Fd(MDOC_ARGS); static void pmdoc_In(MDOC_ARGS); static void pmdoc_Fn(MDOC_ARGS); @@ -122,7 +124,7 @@ static const pmdoc_nf mdocs[MDOC_MAX] = { NULL, /* Cm */ NULL, /* Dv */ NULL, /* Er */ - NULL, /* Ev */ + pmdoc_Ev, /* Ev */ NULL, /* Ex */ NULL, /* Fa */ pmdoc_Fd, /* Fd */ @@ -531,16 +533,25 @@ buf_append(struct buf *buf, const char *cp) * This is optimised for general mdoc nodes in this context, which do * not consist of subexpressions and having a recursive call for n->next * would be wasteful. + * The "f" variable should be 0 unless called from pmdoc_Nd for the + * description buffer, which does not start at the beginning of the + * buffer. */ static void -buf_appendmdoc(struct buf *buf, const struct mdoc_node *n) +buf_appendmdoc(struct buf *buf, const struct mdoc_node *n, int f) { for ( ; n; n = n->next) { if (n->child) - buf_appendmdoc(buf, n->child); - if (MDOC_TEXT == n->type) + buf_appendmdoc(buf, n->child, f); + + if (MDOC_TEXT == n->type && f) { + f = 0; + buf_appendb(buf, n->string, + strlen(n->string) + 1); + } else if (MDOC_TEXT == n->type) buf_append(buf, n->string); + } } @@ -552,7 +563,7 @@ pmdoc_An(MDOC_ARGS) if (SEC_AUTHORS != n->sec) return; - buf_appendmdoc(buf, n->child); + buf_appendmdoc(buf, n->child, 0); hash_put(hash, buf, TYPE_AUTHOR); } @@ -610,7 +621,7 @@ pmdoc_Cd(MDOC_ARGS) if (SEC_SYNOPSIS != n->sec) return; - buf_appendmdoc(buf, n->child); + buf_appendmdoc(buf, n->child, 0); hash_put(hash, buf, TYPE_CONFIG); } @@ -743,35 +754,37 @@ pmdoc_Fo(MDOC_ARGS) static void pmdoc_Nd(MDOC_ARGS) { - size_t sz; if (MDOC_BODY != n->type) return; - else if (NULL == (n = n->child)) - return; - /* FIXME: don't assume this. */ - assert(MDOC_TEXT == n->type); + buf_appendmdoc(dbuf, n->child, 1); + buf_appendmdoc(buf, n->child, 0); - sz = strlen(n->string) + 1; - buf_appendb(dbuf, n->string, sz); - buf_appendb(buf, n->string, sz); - - buf_appendmdoc(dbuf, n->next); - buf_appendmdoc(buf, n->next); - hash_put(hash, buf, TYPE_DESC); } /* ARGSUSED */ static void +pmdoc_Ev(MDOC_ARGS) +{ + + if (SEC_ENVIRONMENT != n->sec) + return; + + buf_appendmdoc(buf, n->child, 0); + hash_put(hash, buf, TYPE_ENV); +} + +/* ARGSUSED */ +static void pmdoc_Pa(MDOC_ARGS) { if (SEC_FILES != n->sec) return; - buf_appendmdoc(buf, n->child); + buf_appendmdoc(buf, n->child, 0); hash_put(hash, buf, TYPE_PATH); } @@ -781,7 +794,7 @@ pmdoc_Nm(MDOC_ARGS) { if (SEC_NAME == n->sec) { - buf_appendmdoc(buf, n->child); + buf_appendmdoc(buf, n->child, 0); hash_put(hash, buf, TYPE_NAME); return; } else if (SEC_SYNOPSIS != n->sec || MDOC_HEAD != n->type) @@ -790,7 +803,7 @@ pmdoc_Nm(MDOC_ARGS) if (NULL == n->child) buf_append(buf, m->name); - buf_appendmdoc(buf, n->child); + buf_appendmdoc(buf, n->child, 0); hash_put(hash, buf, TYPE_UTILITY); }