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

Diff for /mandoc/mdoc_macro.c between version 1.159 and 1.162

version 1.159, 2014/12/18 20:58:32 version 1.162, 2015/02/01 16:47:39
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010, 2012-2015 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 363  rew_dohalt(enum mdoct tok, enum mdoc_type type,
Line 363  rew_dohalt(enum mdoct tok, enum mdoc_type type,
          * When starting to rewind, skip plain text           * When starting to rewind, skip plain text
          * and nodes that have already been rewound.           * and nodes that have already been rewound.
          */           */
         if (MDOC_TEXT == p->type || MDOC_VALID & p->flags)          if (p->type == MDOC_TEXT || p->flags & (MDOC_VALID | MDOC_BREAK))
                 return(REWIND_MORE);                  return(REWIND_MORE);
   
         /*          /*
Line 550  static void
Line 550  static void
 rew_sub(enum mdoc_type t, struct mdoc *mdoc,  rew_sub(enum mdoc_type t, struct mdoc *mdoc,
                 enum mdoct tok, int line, int ppos)                  enum mdoct tok, int line, int ppos)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n, *to;
   
           to = NULL;
         n = mdoc->last;          n = mdoc->last;
         while (n) {          while (n) {
                 switch (rew_dohalt(tok, t, n)) {                  switch (rew_dohalt(tok, t, n)) {
                 case REWIND_NONE:                  case REWIND_NONE:
                         return;                          if (to == NULL)
                                   return;
                           n = to;
                           break;
                 case REWIND_THIS:                  case REWIND_THIS:
                         n->lastline = line -                          n->lastline = line -
                             (mdoc->flags & MDOC_NEWLINE &&                              (mdoc->flags & MDOC_NEWLINE &&
Line 571  rew_sub(enum mdoc_type t, struct mdoc *mdoc,
Line 575  rew_sub(enum mdoc_type t, struct mdoc *mdoc,
                 case REWIND_MORE:                  case REWIND_MORE:
                         n->lastline = line -                          n->lastline = line -
                             (mdoc->flags & MDOC_NEWLINE ? 1 : 0);                              (mdoc->flags & MDOC_NEWLINE ? 1 : 0);
                           to = n;
                         n = n->parent;                          n = n->parent;
                         continue;                          continue;
                 case REWIND_LATER:                  case REWIND_LATER:
Line 713  blk_exp_close(MACRO_PROT_ARGS)
Line 718  blk_exp_close(MACRO_PROT_ARGS)
         struct mdoc_node *later;        /* A sub-block starting later. */          struct mdoc_node *later;        /* A sub-block starting later. */
         struct mdoc_node *n;            /* For searching backwards. */          struct mdoc_node *n;            /* For searching backwards. */
   
         int              j, lastarg, maxargs, flushed, nl;          int              flushed, have_it, j, lastarg, maxargs, nl;
         enum margserr    ac;          enum margserr    ac;
         enum mdoct       atok, ntok;          enum mdoct       atok, ntok;
         char            *p;          char            *p;
Line 737  blk_exp_close(MACRO_PROT_ARGS)
Line 742  blk_exp_close(MACRO_PROT_ARGS)
          * both of our own and of pending sub-blocks.           * both of our own and of pending sub-blocks.
          */           */
   
           have_it = 0;
         atok = rew_alt(tok);          atok = rew_alt(tok);
         body = endbody = later = NULL;          body = endbody = later = NULL;
         for (n = mdoc->last; n; n = n->parent) {          for (n = mdoc->last; n; n = n->parent) {
                 if (n->flags & MDOC_VALID)                  if (n->flags & (MDOC_VALID | MDOC_BREAK))
                         continue;                          continue;
   
                 /* Remember the start of our own body. */                  /* Remember the start of our own body. */
Line 753  blk_exp_close(MACRO_PROT_ARGS)
Line 759  blk_exp_close(MACRO_PROT_ARGS)
   
                 if (n->type != MDOC_BLOCK || n->tok == MDOC_Nm)                  if (n->type != MDOC_BLOCK || n->tok == MDOC_Nm)
                         continue;                          continue;
   
                   if (n->tok == MDOC_It) {
                           have_it = 1;
                           continue;
                   }
   
                 if (atok == n->tok) {                  if (atok == n->tok) {
                         assert(body);                          assert(body);
   
Line 762  blk_exp_close(MACRO_PROT_ARGS)
Line 774  blk_exp_close(MACRO_PROT_ARGS)
                          * just proceed to closing out.                           * just proceed to closing out.
                          */                           */
   
                         if (later == NULL)                          if (later == NULL ||
                               (tok == MDOC_El && !have_it))
                                 break;                                  break;
   
                         /*                          /*
Line 801  blk_exp_close(MACRO_PROT_ARGS)
Line 814  blk_exp_close(MACRO_PROT_ARGS)
                  * implicit ones, the first open implicit block.                   * implicit ones, the first open implicit block.
                  */                   */
   
                 if (later &&                  if (later == NULL ||
                     mdoc_macros[later->tok].flags & MDOC_EXPLICIT)                      ! (mdoc_macros[later->tok].flags & MDOC_EXPLICIT))
                         continue;  
                 if (n->tok != MDOC_It)  
                         later = n;                          later = n;
         }          }
         rew_sub(MDOC_BODY, mdoc, tok, line, ppos);          rew_sub(MDOC_BODY, mdoc, tok, line, ppos);
Line 1126  blk_full(MACRO_PROT_ARGS)
Line 1137  blk_full(MACRO_PROT_ARGS)
   
         if (tok == MDOC_Nd) {          if (tok == MDOC_Nd) {
                 head = mdoc_head_alloc(mdoc, line, ppos, tok);                  head = mdoc_head_alloc(mdoc, line, ppos, tok);
                 rew_sub(MDOC_HEAD, mdoc, tok, line, ppos);                  rew_last(mdoc, head);
                 body = mdoc_body_alloc(mdoc, line, ppos, tok);                  body = mdoc_body_alloc(mdoc, line, ppos, tok);
         }          }
   
Line 1263  blk_part_imp(MACRO_PROT_ARGS)
Line 1274  blk_part_imp(MACRO_PROT_ARGS)
          */           */
   
         blk = mdoc_block_alloc(mdoc, line, ppos, tok, NULL);          blk = mdoc_block_alloc(mdoc, line, ppos, tok, NULL);
         mdoc_head_alloc(mdoc, line, ppos, tok);          rew_last(mdoc, mdoc_head_alloc(mdoc, line, ppos, tok));
         rew_sub(MDOC_HEAD, mdoc, tok, line, ppos);  
   
         /*          /*
          * Open the body scope "on-demand", that is, after we've           * Open the body scope "on-demand", that is, after we've

Legend:
Removed from v.1.159  
changed lines
  Added in v.1.162

CVSweb