=================================================================== RCS file: /cvs/mandoc/mdoc_macro.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- mandoc/mdoc_macro.c 2009/08/20 08:59:12 1.33 +++ mandoc/mdoc_macro.c 2009/09/16 14:40:56 1.34 @@ -1,4 +1,4 @@ -/* $Id: mdoc_macro.c,v 1.33 2009/08/20 08:59:12 kristaps Exp $ */ +/* $Id: mdoc_macro.c,v 1.34 2009/09/16 14:40:56 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -275,7 +275,7 @@ lookup_raw(struct mdoc *mdoc, const char *p) { int res; - if (MDOC_MAX == (res = mdoc_hash_find(mdoc->htab, p))) + if (MDOC_MAX == (res = mdoc_hash_find(p))) return(MDOC_MAX); if (MDOC_CALLABLE & mdoc_macros[res].flags) return(res);