=================================================================== RCS file: /cvs/mandoc/Attic/man_hash.c,v retrieving revision 1.7 retrieving revision 1.9 diff -u -p -r1.7 -r1.9 --- mandoc/Attic/man_hash.c 2009/04/12 19:45:26 1.7 +++ mandoc/Attic/man_hash.c 2009/06/16 19:55:28 1.9 @@ -1,6 +1,6 @@ -/* $Id: man_hash.c,v 1.7 2009/04/12 19:45:26 kristaps Exp $ */ +/* $Id: man_hash.c,v 1.9 2009/06/16 19:55:28 kristaps Exp $ */ /* - * Copyright (c) 2008, 2009 Kristaps Dzonsons + * Copyright (c) 2008, 2009 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -41,7 +41,7 @@ man_hash_alloc(void) if (NULL == htab) return(NULL); - for (i = 1; i < MAN_MAX; i++) { + for (i = 0; i < MAN_MAX; i++) { x = man_macronames[i][0]; assert((x >= 65 && x <= 90) ||