summaryrefslogtreecommitdiffstatshomepage
path: root/man_macro.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_macro.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_macro.c')
-rw-r--r--man_macro.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/man_macro.c b/man_macro.c
index 1fce4a04..e619f452 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.15 2009/06/10 20:18:43 kristaps Exp $ */
+/* $Id: man_macro.c,v 1.16 2009/06/16 19:55:28 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -28,7 +28,7 @@ static int man_args(struct man *, int,
int *, char *, char **);
static int man_flags[MAN_MAX] = {
- 0, /* __ */
+ 0, /* br */
0, /* TH */
0, /* SH */
0, /* SS */
@@ -49,7 +49,6 @@ static int man_flags[MAN_MAX] = {
FL_NLINE, /* I */
FL_NLINE, /* IR */
FL_NLINE, /* RI */
- 0, /* br */
0, /* na */
FL_NLINE, /* i */
};