[BACK]Return to man_macro.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man_macro.c between version 1.144 and 1.145

version 1.144, 2019/01/05 18:59:46 version 1.145, 2020/09/09 17:01:10
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2012-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2012-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>   * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 107  man_unscope(struct roff_man *man, const struct roff_no
Line 107  man_unscope(struct roff_man *man, const struct roff_no
                                 mandoc_msg(MANDOCERR_BLK_LINE,                                  mandoc_msg(MANDOCERR_BLK_LINE,
                                     n->line, n->pos,                                      n->line, n->pos,
                                     "EOF breaks %s", roff_name[n->tok]);                                      "EOF breaks %s", roff_name[n->tok]);
                                 if (man->flags & MAN_ELINE)                                  if (man->flags & MAN_ELINE) {
                                         man->flags &= ~MAN_ELINE;                                          if ((man_macro(n->parent->tok)->flags &
                                 else {                                              MAN_ESCOPED) == 0)
                                                   man->flags &= ~MAN_ELINE;
                                   } else {
                                         assert(n->type == ROFFT_HEAD);                                          assert(n->type == ROFFT_HEAD);
                                         n = n->parent;                                          n = n->parent;
                                         man->flags &= ~MAN_BLINE;                                          man->flags &= ~MAN_BLINE;

Legend:
Removed from v.1.144  
changed lines
  Added in v.1.145

CVSweb