From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s7HGifhE029413 for ; Sun, 17 Aug 2014 12:44:41 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s7HGifV8022546; Sun, 17 Aug 2014 12:44:41 -0400 (EDT) Date: Sun, 17 Aug 2014 12:44:41 -0400 (EDT) Message-Id: <201408171644.s7HGifV8022546@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: KNF: fix indentation of previous commit, see style(9): X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- KNF: fix indentation of previous commit, see style(9): "Indentation is an 8 character tab. Second level indents are four spaces." All the rest of this file already conforms. Modified Files: -------------- mdocml: mdoc_term.c Revision Data ------------- Index: mdoc_term.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v retrieving revision 1.277 retrieving revision 1.278 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.277 -r1.278 --- mdoc_term.c +++ mdoc_term.c @@ -807,9 +807,9 @@ termp_it_pre(DECL_ARGS) * this as a `-ohang' list instead. */ if (NULL != n->next && - NULL != n->next->child && - (MDOC_Bl == n->next->child->tok || - MDOC_Bd == n->next->child->tok)) + NULL != n->next->child && + (MDOC_Bl == n->next->child->tok || + MDOC_Bd == n->next->child->tok)) break; p->flags |= TERMP_NOBREAK | TERMP_BRIND | TERMP_HANG; @@ -864,10 +864,10 @@ termp_it_pre(DECL_ARGS) * using `Bd' or `Bl' within `-hang' overstep lists. */ if (MDOC_HEAD == n->type && - NULL != n->next && - NULL != n->next->child && - (MDOC_Bl == n->next->child->tok || - MDOC_Bd == n->next->child->tok)) + NULL != n->next && + NULL != n->next->child && + (MDOC_Bl == n->next->child->tok || + MDOC_Bd == n->next->child->tok)) break; /* FALLTHROUGH */ case LIST_bullet: @@ -1031,7 +1031,7 @@ termp_nm_pre(DECL_ARGS) synopsis_pre(p, n->parent); if (MDOC_HEAD == n->type && - NULL != n->next && NULL != n->next->child) { + NULL != n->next && NULL != n->next->child) { p->flags |= TERMP_NOSPACE | TERMP_NOBREAK | TERMP_BRIND; p->trailspace = 1; p->rmargin = p->offset + term_len(p, 1); @@ -1060,7 +1060,7 @@ termp_nm_post(DECL_ARGS) if (MDOC_BLOCK == n->type) { p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP); } else if (MDOC_HEAD == n->type && - NULL != n->next && NULL != n->next->child) { + NULL != n->next && NULL != n->next->child) { term_flushln(p); p->flags &= ~(TERMP_NOBREAK | TERMP_BRIND | TERMP_HANG); p->trailspace = 0; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv