summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-16 19:55:28 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-16 19:55:28 +0000
commit9926ea89c1f7a785e750b0118b7b4ed73b4fd2d0 (patch)
treedbad9a35492afb007b8ff5e3ad1416ed1e8ed989 /man.c
parenta2605b913e645cce238389093dfa9d10cbcf7236 (diff)
downloadmandoc-9926ea89c1f7a785e750b0118b7b4ed73b4fd2d0.tar.gz
Removed MAN___: moved MAN_br to its index (comments not passed into parser).
Fix: hashtable not fully formed after removal of MDOC___.
Diffstat (limited to 'man.c')
-rw-r--r--man.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man.c b/man.c
index 9744cc8e..eba5fa94 100644
--- a/man.c
+++ b/man.c
@@ -24,12 +24,12 @@
#include "libman.h"
const char *const __man_macronames[MAN_MAX] = {
- "\\\"", "TH", "SH", "SS",
+ "br", "TH", "SH", "SS",
"TP", "LP", "PP", "P",
"IP", "HP", "SM", "SB",
"BI", "IB", "BR", "RB",
"R", "B", "I", "IR",
- "RI", "br", "na", "i"
+ "RI", "na", "i"
};
const char * const *man_macronames = __man_macronames;