aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-01-20 11:28:29 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-01-20 11:28:29 +0000
commit157acc96e57eb848d9e9d3918f644f9bb1a463bc (patch)
tree3e846bee46c15047157c3f0979d786c53b9fb6d3 /mdoc_macro.c
parent0c92bc94cbc340c21f4516ae341e054860fe6a43 (diff)
downloadmandoc-157acc96e57eb848d9e9d3918f644f9bb1a463bc.tar.gz
mandoc-157acc96e57eb848d9e9d3918f644f9bb1a463bc.tar.zst
mandoc-157acc96e57eb848d9e9d3918f644f9bb1a463bc.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 '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 9de7dfb3..004be767 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_macro.c,v 1.127 2013/12/31 23:23:11 schwarze Exp $ */
+/* $Id: mdoc_macro.c,v 1.128 2014/01/20 11:28:29 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -98,7 +98,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 */