=================================================================== RCS file: /cvs/mandoc/chars.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mandoc/chars.c 2010/01/05 19:51:10 1.15 +++ mandoc/chars.c 2010/01/28 06:04:59 1.16 @@ -1,4 +1,4 @@ -/* $Id: chars.c,v 1.15 2010/01/05 19:51:10 kristaps Exp $ */ +/* $Id: chars.c,v 1.16 2010/01/28 06:04:59 kristaps Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -165,18 +165,6 @@ find(struct tbl *tab, const char *p, size_t sz, size_t if (NULL == (pp = htab[hash])) return(NULL); - - if (NULL == pp->next) { - if ( ! match(pp, p, sz, type)) - return(NULL); - - if (CHARS_HTML == tab->type) { - *rsz = pp->htmlsz; - return(pp->html); - } - *rsz = pp->asciisz; - return(pp->ascii); - } for (prev = NULL; pp; pp = pp->next) { if ( ! match(pp, p, sz, type)) {