]> git.cameronkatri.com Git - mandoc.git/commitdiff
Make sure that the manual section defaults to `1' if it's unset. This
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 1 Dec 2010 16:38:57 +0000 (16:38 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 1 Dec 2010 16:38:57 +0000 (16:38 +0000)
behaviour only happens if `Dt' isn't specified, which can be exhibited
by running mandoc -mdoc on a man manual.

mdoc.c

diff --git a/mdoc.c b/mdoc.c
index 930d20719c324afa50d3cd1be9fcbf0f46559c67..b0f47e04bbf20e7d4f3deca0dc2c2080e40c3d86 100644 (file)
--- a/mdoc.c
+++ b/mdoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mdoc.c,v 1.166 2010/11/30 13:04:14 kristaps Exp $ */
+/*     $Id: mdoc.c,v 1.167 2010/12/01 16:38:57 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -286,6 +286,8 @@ mdoc_macro(MACRO_PROT_ARGS)
                        ! (MDOC_PBODY & m->flags)) {
                if ( ! mdoc_pmsg(m, line, ppos, MANDOCERR_BADPROLOG))
                        return(0);
+               if (NULL == m->meta.msec)
+                       m->meta.msec = mandoc_strdup("1");
                if (NULL == m->meta.title)
                        m->meta.title = mandoc_strdup("UNKNOWN");
                if (NULL == m->meta.vol)