summaryrefslogtreecommitdiffstatshomepage
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
commit779cfd652ca006f1e2598aba37976bc9e022ac11 (patch)
tree9e664d074f0a23b507be5be82c55686e8dcb83bc /man.c
parenta7f2dc1d0e14e61727a4abdb0250b39e016e0705 (diff)
downloadmandoc-779cfd652ca006f1e2598aba37976bc9e022ac11.tar.gz
mandoc-779cfd652ca006f1e2598aba37976bc9e022ac11.tar.zst
mandoc-779cfd652ca006f1e2598aba37976bc9e022ac11.zip
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man.c b/man.c
index 5b83d958..14004c55 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.20 2009/06/16 19:13:28 kristaps Exp $ */
+/* $Id: man.c,v 1.21 2009/06/16 19:55:28 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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;