summaryrefslogtreecommitdiffstatshomepage
path: root/roff.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2008-12-05 11:28:16 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2008-12-05 11:28:16 +0000
commitf50249ac0c8b039ba90b0be44970e3700a8d4ad8 (patch)
tree98c1306168dda390c60b3071fb48db6520a0ab05 /roff.c
parent19bbba00a696e5f8af750eebfa6f47c1ee1cfa2e (diff)
downloadmandoc-f50249ac0c8b039ba90b0be44970e3700a8d4ad8.tar.gz
mandoc-f50249ac0c8b039ba90b0be44970e3700a8d4ad8.tar.zst
mandoc-f50249ac0c8b039ba90b0be44970e3700a8d4ad8.zip
*** empty log message ***
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index 4870e993..a39980ef 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.40 2008/12/04 23:10:51 kristaps Exp $ */
+/* $Id: roff.c,v 1.41 2008/12/05 11:28:17 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -41,6 +41,7 @@
/* TODO: unify empty-content tags a la <br />. */
/* TODO: macros with a set number of arguments? */
/* TODO: validate Dt macro arguments. */
+/* FIXME: Bl -diag ignore callable children. */
enum roffd {
ROFF_ENTER = 0,
@@ -1029,7 +1030,7 @@ roff_Dd(ROFFCALL_ARGS)
argv++;
- if (0 == strcmp(*argv, "$Mdocdate: December 4 2008 $")) {
+ if (0 == strcmp(*argv, "$Mdocdate: December 5 2008 $")) {
t = time(NULL);
if (NULL == localtime_r(&t, &tree->tm))
err(1, "localtime_r");