summaryrefslogtreecommitdiffstatshomepage
path: root/man_macro.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_macro.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_macro.c')
-rw-r--r--man_macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c
index bf36e799..531a8f58 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.48 2010/06/26 16:07:08 kristaps Exp $ */
+/* $Id: man_macro.c,v 1.49 2010/07/22 23:03:15 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -83,6 +83,7 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ in_line_eoln, 0 }, /* Vb */
{ in_line_eoln, 0 }, /* Ve */
{ in_line_eoln, 0 }, /* AT */
+ { in_line_eoln, 0 }, /* in */
};
const struct man_macro * const man_macros = __man_macros;