aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-07-22 23:03:15 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-07-22 23:03:15 +0000
commit4dde5d7bbdceeec0032e163e7a8e8cac3233d659 (patch)
treec504c0e1f43a060e8f30fc4b2dcfcd6c62afc083 /man.c
parent2764eb0999f7c7e2835d85c1b9b44e5fa1f6f6c2 (diff)
downloadmandoc-4dde5d7bbdceeec0032e163e7a8e8cac3233d659.tar.gz
mandoc-4dde5d7bbdceeec0032e163e7a8e8cac3233d659.tar.zst
mandoc-4dde5d7bbdceeec0032e163e7a8e8cac3233d659.zip
Added `in' macro support for -man -Tascii. This is not yet supported in
-Thtml (I'm surprised to note that neither is LITERAL mode).
Diffstat (limited to 'man.c')
-rw-r--r--man.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man.c b/man.c
index 9439d755..b35d7e07 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.83 2010/07/18 17:00:26 schwarze Exp $ */
+/* $Id: man.c,v 1.84 2010/07/22 23:03:15 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -41,6 +41,7 @@ const char *const __man_macronames[MAN_MAX] = {
"nf", "fi", "r", "RE",
"RS", "DT", "UC", "PD",
"Sp", "Vb", "Ve", "AT",
+ "in"
};
const char * const *man_macronames = __man_macronames;