summaryrefslogtreecommitdiffstatshomepage
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-16 23:37:28 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-16 23:37:28 +0000
commit22c17699961b61390b0edf1528ac584f4dee3b8d (patch)
tree45d11dbf8f65d47678e1760a4815f47c1c683080 /term.c
parent08508ed7e6368876201309aff6964a039f011045 (diff)
downloadmandoc-22c17699961b61390b0edf1528ac584f4dee3b8d.tar.gz
mandoc-22c17699961b61390b0edf1528ac584f4dee3b8d.tar.zst
mandoc-22c17699961b61390b0edf1528ac584f4dee3b8d.zip
Changed e-mail address to @openbsd.
Cleaned up manual-page documentation.
Diffstat (limited to 'term.c')
-rw-r--r--term.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/term.c b/term.c
index 6a81765a..8d73f624 100644
--- a/term.c
+++ b/term.c
@@ -1,6 +1,6 @@
-/* $Id: term.c,v 1.60 2009/03/16 22:19:19 kristaps Exp $ */
+/* $Id: term.c,v 1.61 2009/03/16 23:37:28 kristaps Exp $ */
/*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the
@@ -149,6 +149,7 @@ DECL_PRE(termp_bsx);
DECL_PRE(termp_bt);
DECL_PRE(termp_cd);
DECL_PRE(termp_cm);
+DECL_PRE(termp_dx);
DECL_PRE(termp_em);
DECL_PRE(termp_ex);
DECL_PRE(termp_fa);
@@ -298,6 +299,7 @@ const struct termact __termacts[MDOC_MAX] = {
{ NULL, NULL }, /* %C */
{ NULL, NULL }, /* Es */
{ NULL, NULL }, /* En */
+ { termp_dx_pre, NULL }, /* Dx */
};
const struct termact *termacts = __termacts;
@@ -1392,6 +1394,16 @@ termp_ox_pre(DECL_ARGS)
/* ARGSUSED */
static int
+termp_dx_pre(DECL_ARGS)
+{
+
+ word(p, "DragonFly");
+ return(1);
+}
+
+
+/* ARGSUSED */
+static int
termp_ux_pre(DECL_ARGS)
{