summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-07 11:47:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-07 11:47:17 +0000
commite1bf3bf587b34455d988dd2fdde351e2e04ba3bf (patch)
treed9d43c9730e034882c7a16774e329035d9bd2445 /mdoc_macro.c
parent8f61e237a680a38297c6101dc1a71a0b88a0474f (diff)
downloadmandoc-e1bf3bf587b34455d988dd2fdde351e2e04ba3bf.tar.gz
mandoc-e1bf3bf587b34455d988dd2fdde351e2e04ba3bf.tar.zst
mandoc-e1bf3bf587b34455d988dd2fdde351e2e04ba3bf.zip
Made `In' handling work in new-groff style (see mdoc.samples).
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index c324449d..ed31d01b 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.17 2009/07/07 09:29:15 kristaps Exp $ */
+/* $Id: mdoc_macro.c,v 1.18 2009/07/07 11:47:17 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -83,7 +83,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Fn */
{ in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ft */
{ in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ic */
- { in_line_eoln, 0 }, /* In */ /* FIXME: historic usage! */
+ { in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* In */
{ in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Li */
{ in_line_eoln, 0 }, /* Nd */
{ in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Nm */