=================================================================== RCS file: /cvs/mandoc/Attic/action.c,v retrieving revision 1.16 retrieving revision 1.18 diff -u -p -r1.16 -r1.18 --- mandoc/Attic/action.c 2009/01/21 11:35:26 1.16 +++ mandoc/Attic/action.c 2009/02/21 21:00:06 1.18 @@ -1,4 +1,4 @@ -/* $Id: action.c,v 1.16 2009/01/21 11:35:26 kristaps Exp $ */ +/* $Id: action.c,v 1.18 2009/02/21 21:00:06 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -216,6 +216,7 @@ post_dt(struct mdoc *mdoc) assert(NULL == mdoc->meta.title); + /* LINTED */ for (i = 0, n = mdoc->last->child; n; n = n->next, i++) { assert(MDOC_TEXT == n->type); p = n->data.text.string; @@ -243,7 +244,7 @@ post_dt(struct mdoc *mdoc) } if (NULL == mdoc->meta.title) - mdoc->meta.title = xstrdup("untitled"); + mdoc->meta.title = xstrdup("UNTITLED"); mdoc_msg(mdoc, "title: %s", mdoc->meta.title);