[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.88 and 1.94

version 1.88, 2010/07/01 15:38:56 version 1.94, 2010/09/26 20:22:28
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2010 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 34  enum rew { /* see rew_dohalt() */
Line 35  enum rew { /* see rew_dohalt() */
         REWIND_THIS,          REWIND_THIS,
         REWIND_MORE,          REWIND_MORE,
         REWIND_LATER,          REWIND_LATER,
         REWIND_ERROR,          REWIND_ERROR
 };  };
   
 static  int             blk_full(MACRO_PROT_ARGS);  static  int             blk_full(MACRO_PROT_ARGS);
Line 206  mdoc_macroend(struct mdoc *m)
Line 207  mdoc_macroend(struct mdoc *m)
   
         n = MDOC_VALID & m->last->flags ?  m->last->parent : m->last;          n = MDOC_VALID & m->last->flags ?  m->last->parent : m->last;
   
         for ( ; n; n = n->parent) {          for ( ; n; n = n->parent)
                 if (MDOC_BLOCK != n->type)                  if (MDOC_BLOCK == n->type &&
                         continue;                      MDOC_EXPLICIT & mdoc_macros[n->tok].flags)
                 if ( ! (MDOC_EXPLICIT & mdoc_macros[n->tok].flags))                          mdoc_nmsg(m, n, MANDOCERR_SCOPEEXIT);
                         continue;  
                 mdoc_nmsg(m, n, MANDOCERR_SYNTSCOPE);  
                 return(0);  
         }  
   
         /* Rewind to the first. */          /* Rewind to the first. */
   
Line 609  append_delims(struct mdoc *m, int line, int *pos, char
Line 606  append_delims(struct mdoc *m, int line, int *pos, char
                  * knowing which symbols break this behaviour, for                   * knowing which symbols break this behaviour, for
                  * example, `.  ;' shouldn't propogate the double-space.                   * example, `.  ;' shouldn't propogate the double-space.
                  */                   */
                 if (mandoc_eos(p, strlen(p)))                  if (mandoc_eos(p, strlen(p), 0))
                         m->last->flags |= MDOC_EOS;                          m->last->flags |= MDOC_EOS;
         }          }
   
Line 1025  blk_full(MACRO_PROT_ARGS)
Line 1022  blk_full(MACRO_PROT_ARGS)
                 lac = ARGS_ERROR == ac ? ARGS_PEND : ac;                  lac = ARGS_ERROR == ac ? ARGS_PEND : ac;
                 ac = mdoc_args(m, line, pos, buf, tok, &p);                  ac = mdoc_args(m, line, pos, buf, tok, &p);
   
                   if (ARGS_PUNCT == ac)
                           break;
   
                 if (ARGS_ERROR == ac)                  if (ARGS_ERROR == ac)
                         return(0);                          return(0);
   
Line 1262  blk_part_imp(MACRO_PROT_ARGS)
Line 1262  blk_part_imp(MACRO_PROT_ARGS)
          */           */
   
         if (n && MDOC_TEXT == n->type && n->string)          if (n && MDOC_TEXT == n->type && n->string)
                 if (mandoc_eos(n->string, strlen(n->string)))                  if (mandoc_eos(n->string, strlen(n->string), 1))
                         n->flags |= MDOC_EOS;                          n->flags |= MDOC_EOS;
   
         /* Up-propogate the end-of-space flag. */          /* Up-propogate the end-of-space flag. */
Line 1579  in_line_eoln(MACRO_PROT_ARGS)
Line 1579  in_line_eoln(MACRO_PROT_ARGS)
   
         assert( ! (MDOC_PARSED & mdoc_macros[tok].flags));          assert( ! (MDOC_PARSED & mdoc_macros[tok].flags));
   
           if (tok == MDOC_Pp)
                   rew_sub(MDOC_BLOCK, m, MDOC_Nm, line, ppos);
   
         /* Parse macro arguments. */          /* Parse macro arguments. */
   
         for (arg = NULL; ; ) {          for (arg = NULL; ; ) {
Line 1642  ctx_synopsis(MACRO_PROT_ARGS)
Line 1645  ctx_synopsis(MACRO_PROT_ARGS)
         nl = MDOC_NEWLINE & m->flags;          nl = MDOC_NEWLINE & m->flags;
   
         /* If we're not in the SYNOPSIS, go straight to in-line. */          /* If we're not in the SYNOPSIS, go straight to in-line. */
         if (SEC_SYNOPSIS != m->lastsec)          if ( ! (MDOC_SYNOPSIS & m->flags))
                 return(in_line(m, tok, line, ppos, pos, buf));                  return(in_line(m, tok, line, ppos, pos, buf));
   
         /* If we're a nested call, same place. */          /* If we're a nested call, same place. */

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.94

CVSweb