diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-31 06:50:25 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-31 06:50:25 +0000 |
commit | 8eda95c174f261a74db98c38c4d4ae30895d3523 (patch) | |
tree | 5069ba0ab79622ead876c445babea5d8f82bfe29 | |
parent | 0c847ddadd3a2935507c6f10ba925cd0cd3d507d (diff) | |
download | mandoc-8eda95c174f261a74db98c38c4d4ae30895d3523.tar.gz |
Patch on DragonFly BSD syntax (thanks Sascha Wildner).
Noted inclusion into DragonFly BSD (thanks Sascha Wildner).
-rw-r--r-- | index.sgml | 7 | ||||
-rw-r--r-- | mdoc.7 | 2 | ||||
-rw-r--r-- | mdoc_html.c | 2 | ||||
-rw-r--r-- | mdoc_term.c | 2 |
4 files changed, 10 insertions, 3 deletions
@@ -91,6 +91,13 @@ <col> <tbody> <tr> + <td>DragonFly BSD</td> + <td> + <a href="http://gitweb.dragonflybsd.org/dragonfly.git/tree/HEAD:/usr.bin/mandoc" + class="external">usr.bin/mandoc</a> + </td> + </tr> + <tr> <td>FreeBSD</td> <td> <a href="http://www.freebsd.org/cgi/cvsweb.cgi/ports/textproc/mdocml/" @@ -1344,7 +1344,7 @@ See also .Sx \&Er . . .Ss \&Dx -Format the DragonFlyBSD version provided as an argument, or a default +Format the DragonFly BSD version provided as an argument, or a default value if no argument is provided. .Pp Examples: diff --git a/mdoc_html.c b/mdoc_html.c index d79cb5d8..f3fd24fe 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -810,7 +810,7 @@ mdoc_xx_pre(MDOC_ARGS) pp = "BSDI BSD/OS"; break; case (MDOC_Dx): - pp = "DragonFlyBSD"; + pp = "DragonFly"; break; case (MDOC_Fx): pp = "FreeBSD"; diff --git a/mdoc_term.c b/mdoc_term.c index 15c3440f..ee2bdd3e 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1634,7 +1634,7 @@ termp_xx_pre(DECL_ARGS) pp = "BSDI BSD/OS"; break; case (MDOC_Dx): - pp = "DragonFlyBSD"; + pp = "DragonFly"; break; case (MDOC_Fx): pp = "FreeBSD"; |