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

Diff for /mandoc/mdoc.c between version 1.274 and 1.275

version 1.274, 2018/12/31 07:46:07 version 1.275, 2020/04/06 10:16:17
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
    * Copyright (c) 2010, 2012-2018, 2020 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2012-2018 Ingo Schwarze <schwarze@openbsd.org>  
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 14 
Line 14 
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    *
    * Top level and utility functions of the mdoc(7) parser for mandoc(1).
  */   */
 #include "config.h"  #include "config.h"
   
Line 352  mdoc_pmacro(struct roff_man *mdoc, int ln, char *buf, 
Line 354  mdoc_pmacro(struct roff_man *mdoc, int ln, char *buf, 
                 mandoc_msg(MANDOCERR_SPACE_EOL, ln, offs - 1, NULL);                  mandoc_msg(MANDOCERR_SPACE_EOL, ln, offs - 1, NULL);
   
         /*          /*
          * If an initial macro or a list invocation, divert directly           * If an initial or transparent macro or a list invocation,
          * into macro processing.           * divert directly into macro processing.
          */           */
   
         n = mdoc->last;          n = mdoc->last;
         if (n == NULL || tok == MDOC_It || tok == MDOC_El) {          if (n == NULL || tok == MDOC_It || tok == MDOC_El ||
               roff_tok_transparent(tok)) {
                 (*mdoc_macro(tok)->fp)(mdoc, tok, ln, sv, &offs, buf);                  (*mdoc_macro(tok)->fp)(mdoc, tok, ln, sv, &offs, buf);
                 return 1;                  return 1;
         }          }

Legend:
Removed from v.1.274  
changed lines
  Added in v.1.275

CVSweb