diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-04-02 06:51:44 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-04-02 06:51:44 +0000 |
commit | 8a03dc6dd4f8c96b6231d1f60da2bd65f437a8b4 (patch) | |
tree | 121b76378b915aba7ec64f61d34338b21358fd46 /mdoc_action.c | |
parent | e487e44b52bbc7bfdb77346cc9a44d1a7c825d2c (diff) | |
download | mandoc-8a03dc6dd4f8c96b6231d1f60da2bd65f437a8b4.tar.gz |
mdoc_tokhash -> hash
Initial man hashtab (BROKEN).
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index cbba4a43..a13412ee 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -609,7 +609,7 @@ post_bl_width(struct mdoc *m) if (0 == strcmp(p, "Ds")) width = 8; - else if (MDOC_MAX == (tok = mdoc_tokhash_find(m->htab, p))) + else if (MDOC_MAX == (tok = mdoc_hash_find(m->htab, p))) return(1); else if (0 == (width = mdoc_macro2len(tok))) return(vwarn(m, WNOWIDTH)); |