=================================================================== RCS file: /cvs/mandoc/man.c,v retrieving revision 1.136 retrieving revision 1.140 diff -u -p -r1.136 -r1.140 --- mandoc/man.c 2014/08/01 17:27:44 1.136 +++ mandoc/man.c 2014/10/20 02:33:06 1.140 @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.136 2014/08/01 17:27:44 schwarze Exp $ */ +/* $Id: man.c,v 1.140 2014/10/20 02:33:06 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -16,9 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include @@ -186,10 +184,11 @@ man_node_append(struct man *man, struct man_node *p) assert(p->parent); p->parent->nchild++; - if ( ! man_valid_pre(man, p)) - return(0); - switch (p->type) { + case MAN_BLOCK: + if (p->tok == MAN_SH || p->tok == MAN_SS) + man->flags &= ~MAN_LITERAL; + break; case MAN_HEAD: assert(MAN_BLOCK == p->parent->type); p->parent->head = p; @@ -346,6 +345,8 @@ man_addeqn(struct man *man, const struct eqn *ep) n = man_node_alloc(man, ep->ln, ep->pos, MAN_EQN, MAN_MAX); n->eqn = ep; + if (ep->ln > man->last->line) + n->flags |= MAN_LINE; if ( ! man_node_append(man, n)) return(0); @@ -471,13 +472,6 @@ man_pmacro(struct man *man, int ln, char *buf, int off enum mant tok; int i, ppos; int bline; - - if ('"' == buf[offs]) { - mandoc_msg(MANDOCERR_COMMENT_BAD, man->parse, - ln, offs, NULL); - return(1); - } else if ('\0' == buf[offs]) - return(1); ppos = offs;