]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_hash.c
mandoc.1 reflects actual use of -f option (schwarze@openbsd.org)
[mandoc.git] / mdoc_hash.c
index 9755e333abb1b2f0c10365bcc8624089c95ab7a6..013856bfa53e9c44f07b8b6273386630e9ce902b 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: mdoc_hash.c,v 1.3 2009/04/12 19:45:26 kristaps Exp $ */
+/*     $Id: mdoc_hash.c,v 1.5 2009/06/16 19:55:28 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -46,7 +46,7 @@ mdoc_hash_alloc(void)
        if (NULL == htab) 
                return(NULL);
 
-       for (i = 1; i < MDOC_MAX; i++) {
+       for (i = 0; i < MDOC_MAX; i++) {
                major = mdoc_macronames[i][0];
                assert((major >= 65 && major <= 90) ||
                                major == 37);