From 4ddb3080fde9e658dfff4a27123ace693f595986 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 18 May 2005 12:09:06 +0000 Subject: The heading depth of a para_Subsect is p->aux+1, not p->aux+2. Spotted (indirectly) by Damien Miller. [originally from svn r5802] --- bk_man.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bk_man.c b/bk_man.c index bf78905..eaf74b5 100644 --- a/bk_man.c +++ b/bk_man.c @@ -199,7 +199,7 @@ void man_backend(paragraph *sourceform, keywordlist *keywords, { int depth; if (p->type == para_Subsect) - depth = p->aux + 2; + depth = p->aux + 1; else if (p->type == para_Heading) depth = 1; else -- cgit v1.1