summaryrefslogtreecommitdiffstats
path: root/man_hash.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-19 09:14:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-19 09:14:50 +0000
commitaade897081e194716754b33820106010e2b0ad04 (patch)
tree685ac08b6c3f40f0ad7b84d21f7c697a86909444 /man_hash.c
parentda55485ae1f9a11536b11b9af51a3964d20caa7b (diff)
downloadmandoc-aade897081e194716754b33820106010e2b0ad04.tar.gz
Added RS/RE macro pair (had to adjust closing rules, sec/ssec/rs/par).
Diffstat (limited to 'man_hash.c')
-rw-r--r--man_hash.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/man_hash.c b/man_hash.c
index 7f1686fb..abd2408a 100644
--- a/man_hash.c
+++ b/man_hash.c
@@ -39,10 +39,10 @@ man_hash_alloc(void)
/* Initialised to -1. */
- htab = malloc(26 * 5 * sizeof(int));
+ htab = malloc(26 * 6 * sizeof(int));
if (NULL == htab)
return(NULL);
- for (i = 0; i < 26 * 5; i++)
+ for (i = 0; i < 26 * 6; i++)
htab[i] = -1;
for (i = 0; i < MAN_MAX; i++) {
@@ -52,15 +52,15 @@ man_hash_alloc(void)
(x >= 97 && x <= 122));
x -= (x <= 90) ? 65 : 97;
- x *= 5;
+ x *= 6;
- for (j = 0; j < 5; j++)
+ for (j = 0; j < 6; j++)
if (-1 == htab[x + j]) {
htab[x + j] = i;
break;
}
- assert(j < 5);
+ assert(j < 6);
}
return((void *)htab);
@@ -81,9 +81,9 @@ man_hash_find(const void *arg, const char *tmp)
return(MAN_MAX);
x -= (x <= 90) ? 65 : 97;
- x *= 5;
+ x *= 6;
- for (i = 0; i < 5; i++) {
+ for (i = 0; i < 6; i++) {
if (-1 == (tok = htab[x + i]))
return(MAN_MAX);
if (0 == strcmp(tmp, man_macronames[tok]))