[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.83 and 1.90

version 1.83, 2014/07/07 19:18:15 version 1.90, 2014/11/03 23:18:39
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, 2013 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2012, 2013, 2014 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 16 
Line 16 
  * 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.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
   
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 49  static enum rew  rew_dohalt(enum mant, enum man_type,
Line 49  static enum rew  rew_dohalt(enum mant, enum man_type,
                                 const struct man_node *);                                  const struct man_node *);
 static  enum rew         rew_block(enum mant, enum man_type,  static  enum rew         rew_block(enum mant, enum man_type,
                                 const struct man_node *);                                  const struct man_node *);
 static  void             rew_warn(struct man *,  
                                 struct man_node *, enum mandocerr);  
   
 const   struct man_macro __man_macros[MAN_MAX] = {  const   struct man_macro __man_macros[MAN_MAX] = {
         { in_line_eoln, MAN_NSCOPED }, /* br */          { in_line_eoln, MAN_NSCOPED }, /* br */
Line 63  const struct man_macro __man_macros[MAN_MAX] = {
Line 61  const struct man_macro __man_macros[MAN_MAX] = {
         { blk_imp, MAN_BSCOPE }, /* P */          { blk_imp, MAN_BSCOPE }, /* P */
         { blk_imp, MAN_BSCOPE }, /* IP */          { blk_imp, MAN_BSCOPE }, /* IP */
         { blk_imp, MAN_BSCOPE }, /* HP */          { blk_imp, MAN_BSCOPE }, /* HP */
         { in_line_eoln, MAN_SCOPED }, /* SM */          { in_line_eoln, MAN_SCOPED | MAN_JOIN }, /* SM */
         { in_line_eoln, MAN_SCOPED }, /* SB */          { in_line_eoln, MAN_SCOPED | MAN_JOIN }, /* SB */
         { in_line_eoln, 0 }, /* BI */          { in_line_eoln, 0 }, /* BI */
         { in_line_eoln, 0 }, /* IB */          { in_line_eoln, 0 }, /* IB */
         { in_line_eoln, 0 }, /* BR */          { in_line_eoln, 0 }, /* BR */
         { in_line_eoln, 0 }, /* RB */          { in_line_eoln, 0 }, /* RB */
         { in_line_eoln, MAN_SCOPED }, /* R */          { in_line_eoln, MAN_SCOPED | MAN_JOIN }, /* R */
         { in_line_eoln, MAN_SCOPED }, /* B */          { in_line_eoln, MAN_SCOPED | MAN_JOIN }, /* B */
         { in_line_eoln, MAN_SCOPED }, /* I */          { in_line_eoln, MAN_SCOPED | MAN_JOIN }, /* I */
         { in_line_eoln, 0 }, /* IR */          { in_line_eoln, 0 }, /* IR */
         { in_line_eoln, 0 }, /* RI */          { in_line_eoln, 0 }, /* RI */
         { in_line_eoln, MAN_NSCOPED }, /* na */          { in_line_eoln, MAN_NSCOPED }, /* na */
Line 102  man_unscope(struct man *man, const struct man_node *to
Line 100  man_unscope(struct man *man, const struct man_node *to
 {  {
         struct man_node *n;          struct man_node *n;
   
         man->next = MAN_NEXT_SIBLING;  
         to = to->parent;          to = to->parent;
         n = man->last;          n = man->last;
         while (n != to) {          while (n != to) {
                 if (NULL == to &&  
                     MAN_BLOCK == n->type &&                  /* Reached the end of the document? */
                     0 == (MAN_VALID & n->flags) &&  
                     MAN_EXPLICIT & man_macros[n->tok].flags)                  if (to == NULL && ! (n->flags & MAN_VALID)) {
                         mandoc_msg(MANDOCERR_SCOPEEXIT,                          if (man->flags & (MAN_BLINE | MAN_ELINE) &&
                             man->parse, n->line, n->pos,                              man_macros[n->tok].flags & MAN_SCOPED) {
                             man_macronames[n->tok]);                                  mandoc_vmsg(MANDOCERR_BLK_LINE,
                                       man->parse, n->line, n->pos,
                                       "EOF breaks %s",
                                       man_macronames[n->tok]);
                                   if (man->flags & MAN_ELINE)
                                           man->flags &= ~MAN_ELINE;
                                   else {
                                           assert(n->type == MAN_HEAD);
                                           n = n->parent;
                                           man->flags &= ~MAN_BLINE;
                                   }
                                   man->last = n;
                                   n = n->parent;
                                   man_node_delete(man, man->last);
                                   continue;
                           }
                           if (n->type == MAN_BLOCK &&
                               man_macros[n->tok].flags & MAN_EXPLICIT)
                                   mandoc_msg(MANDOCERR_BLK_NOEND,
                                       man->parse, n->line, n->pos,
                                       man_macronames[n->tok]);
                   }
   
                 /*                  /*
                  * We might delete the man->last node                   * We might delete the man->last node
                  * in the post-validation phase.                   * in the post-validation phase.
                  * Save a pointer to the parent such that                   * Save a pointer to the parent such that
                  * we know where to continue the iteration.                   * we know where to continue the iteration.
                  */                   */
   
                 man->last = n;                  man->last = n;
                 n = n->parent;                  n = n->parent;
                 if ( ! man_valid_post(man))                  if ( ! man_valid_post(man))
                         return(0);                          return(0);
         }          }
   
           /*
            * If we ended up at the parent of the node we were
            * supposed to rewind to, that means the target node
            * got deleted, so add the next node we parse as a child
            * of the parent instead of as a sibling of the target.
            */
   
           man->next = (man->last == to) ?
               MAN_NEXT_CHILD : MAN_NEXT_SIBLING;
   
         return(1);          return(1);
 }  }
   
Line 270  blk_close(MACRO_PROT_ARGS)
Line 301  blk_close(MACRO_PROT_ARGS)
                         break;                          break;
   
         if (NULL == nn) {          if (NULL == nn) {
                 man_pmsg(man, line, ppos, MANDOCERR_NOSCOPE);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, man->parse,
                       line, ppos, man_macronames[tok]);
                 if ( ! rew_scope(MAN_BLOCK, man, MAN_PP))                  if ( ! rew_scope(MAN_BLOCK, man, MAN_PP))
                         return(0);                          return(0);
         } else          } else
Line 391  in_line_eoln(MACRO_PROT_ARGS)
Line 423  in_line_eoln(MACRO_PROT_ARGS)
                 la = *pos;                  la = *pos;
                 if ( ! man_args(man, line, pos, buf, &p))                  if ( ! man_args(man, line, pos, buf, &p))
                         break;                          break;
                 if ( ! man_word_alloc(man, line, la, p))                  if (man_macros[tok].flags & MAN_JOIN &&
                       man->last->type == MAN_TEXT)
                           man_word_append(man, p);
                   else if ( ! man_word_alloc(man, line, la, p))
                         return(0);                          return(0);
         }          }
   
Line 414  in_line_eoln(MACRO_PROT_ARGS)
Line 449  in_line_eoln(MACRO_PROT_ARGS)
                 assert( ! (MAN_NSCOPED & man_macros[tok].flags));                  assert( ! (MAN_NSCOPED & man_macros[tok].flags));
                 man->flags |= MAN_ELINE;                  man->flags |= MAN_ELINE;
                 return(1);                  return(1);
         }  
   
         /* Set ignorable context, if applicable. */  
   
         if (MAN_NSCOPED & man_macros[tok].flags) {  
                 assert( ! (MAN_SCOPED & man_macros[tok].flags));  
                 man->flags |= MAN_ILINE;  
         }          }
   
         assert(MAN_ROOT != man->last->type);          assert(MAN_ROOT != man->last->type);

Legend:
Removed from v.1.83  
changed lines
  Added in v.1.90

CVSweb