diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-01 19:47:33 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-01 19:47:33 +0000 |
commit | 90710486cc57b36313d0f7dc3493177c0703b4b9 (patch) | |
tree | 68e093c179c8df2aa7d6ff6dbe63eef61fafdeb0 /mdoc.7 | |
parent | f0962178f803a13106e8714b7d1b1940e38083d5 (diff) | |
download | mandoc-90710486cc57b36313d0f7dc3493177c0703b4b9.tar.gz |
Properly quote arguments in `Fn' documentation. Also make standalone
'...' have a properly-escaped initial dot.
Diffstat (limited to 'mdoc.7')
-rw-r--r-- | mdoc.7 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1861,8 +1861,8 @@ are delimited by commas. If no arguments are specified, blank parenthesis are output. .Pp Examples: -.Dl \&.Fn "int funcname" "int arg0" "int arg1" -.Dl \&.Fn funcname "int arg0" +.Dl \&.Fn \*qint funcname\*q \*qint arg0\*q \*qint arg1\*q +.Dl \&.Fn funcname \*qint arg0\*q .Dl \&.Fn funcname arg0 .Bd -literal -offset indent -compact \&.Ft functype @@ -1892,7 +1892,7 @@ Invocations usually occur in the following context: .br .Pf \. Sx \&Fa Oo Cm argtype Oc Cm argname .br -\.\.\. +\&.\.\. .br .Pf \. Sx \&Fc .Ed |