]> git.cameronkatri.com Git - mandoc.git/blobdiff - man.c
Implement centering and adjustment to the right margin directly in
[mandoc.git] / man.c
diff --git a/man.c b/man.c
index a7c8004df0e461995e83fbc2533029ca0efe63b8..6bdb4d91b4a6fbdf6856b0127409295cd47f9685 100644 (file)
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/*     $Id: man.c,v 1.184 2018/12/31 07:08:12 schwarze Exp $ */
+/*     $Id: man.c,v 1.186 2018/12/31 10:04:39 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -343,27 +343,3 @@ man_breakscope(struct roff_man *man, int tok)
                man->flags &= ~MAN_BLINE;
        }
 }
-
-void
-man_state(struct roff_man *man, struct roff_node *n)
-{
-
-       switch(n->tok) {
-       case ROFF_nf:
-       case MAN_EX:
-               if (man->flags & ROFF_NOFILL && (n->flags & NODE_VALID) == 0)
-                       mandoc_msg(MANDOCERR_NF_SKIP, n->line, n->pos, "nf");
-               man->flags |= ROFF_NOFILL;
-               break;
-       case ROFF_fi:
-       case MAN_EE:
-               if ( (man->flags & ROFF_NOFILL) == 0 &&
-                    ! (n->flags & NODE_VALID))
-                       mandoc_msg(MANDOCERR_FI_SKIP, n->line, n->pos, "fi");
-               man->flags &= ~ROFF_NOFILL;
-               break;
-       default:
-               break;
-       }
-       man->last->flags |= NODE_VALID;
-}