diff options
author | 2014-01-20 11:27:53 +0000 | |
---|---|---|
committer | 2014-01-20 11:27:53 +0000 | |
commit | 05bd78674c20eb7189af429c934dba2bae6b3328 (patch) | |
tree | b26e496fa231dffb3ae4b7bd10b5bc9fed216f1e /usr.bin/mandoc/mdoc_macro.c | |
parent | Return a user friendly error if we ever encounter an unknown crypto (diff) | |
download | wireguard-openbsd-05bd78674c20eb7189af429c934dba2bae6b3328.tar.xz wireguard-openbsd-05bd78674c20eb7189af429c934dba2bae6b3328.zip |
Keep words after .Ic together in a single argument.
This doesn't hurt normal manual display
and makes the mandocdb(8) database more useful.
Diffstat (limited to 'usr.bin/mandoc/mdoc_macro.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_macro.c b/usr.bin/mandoc/mdoc_macro.c index 3bec998fc8b..9a81b002de6 100644 --- a/usr.bin/mandoc/mdoc_macro.c +++ b/usr.bin/mandoc/mdoc_macro.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_macro.c,v 1.84 2013/12/30 00:52:18 schwarze Exp $ */ +/* $Id: mdoc_macro.c,v 1.85 2014/01/20 11:27:53 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org> @@ -94,7 +94,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Fl */ { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Fn */ { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ft */ - { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ic */ + { in_line, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Ic */ { in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* In */ { in_line, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Li */ { blk_full, MDOC_JOIN }, /* Nd */ |