[BACK]Return to man_macro.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_macro.c between version 1.106 and 1.107

version 1.106, 2019/01/05 18:59:37 version 1.107, 2020/09/09 16:57:05
Line 1 
Line 1 
 /*      $OpenBSD$ */  /* $OpenBSD$ */
 /*  /*
  * 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 105 
Line 105 
                                 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.106  
changed lines
  Added in v.1.107