]> git.cameronkatri.com Git - mandoc.git/blobdiff - action.c
Adding mdoclint.1 manual.
[mandoc.git] / action.c
index 80344dd71c614c1e95162d620d65ea6969b7eaaa..203982aa55d0c49d079dd76642f17e19f7fe2e8b 100644 (file)
--- a/action.c
+++ b/action.c
@@ -1,4 +1,4 @@
-/* $Id: action.c,v 1.17 2009/02/20 11:04:23 kristaps Exp $ */
+/* $Id: action.c,v 1.19 2009/02/22 14:31:08 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -194,6 +194,7 @@ post_sh(struct mdoc *mdoc)
        if (xstrlcats(buf, mdoc->last->child, 64)) {
                if (SEC_CUSTOM != (sec = mdoc_atosec(buf)))
                        mdoc->lastnamed = sec;
+               mdoc->lastsec = sec;
                return(1);
        }
 
@@ -216,6 +217,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;