diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-26 09:55:39 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-26 09:55:39 +0000 |
commit | 35f2108111d8f83fc25edd4c460e0f37db93901b (patch) | |
tree | a2a14f413a5220dcb10ce51e46fdeaa6d9b319e3 /man_hash.c | |
parent | d31b9aced380c9834f45869247dfbd42922d533b (diff) | |
download | mandoc-35f2108111d8f83fc25edd4c460e0f37db93901b.tar.gz |
Fixed reading whitespace for man.7 `. TH'.
Documented this.
Diffstat (limited to 'man_hash.c')
-rw-r--r-- | man_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ man_hash_find(const void *arg, const char *tmp) /* TODO */ for (i = 0; i < MAN_MAX; i++) - if (0 == strcasecmp(tmp, man_macronames[i])) + if (0 == strcmp(tmp, man_macronames[i])) return(i); return(MAN_MAX); |