[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.221 and 1.222

version 1.221, 2017/05/04 17:48:29 version 1.222, 2017/05/05 13:17:55
Line 200  const struct mdoc_macro __mdoc_macros[MDOC_MAX - MDOC_
Line 200  const struct mdoc_macro __mdoc_macros[MDOC_MAX - MDOC_
         { in_line_eoln, 0 }, /* sp */          { in_line_eoln, 0 }, /* sp */
         { in_line_eoln, 0 }, /* %U */          { in_line_eoln, 0 }, /* %U */
         { phrase_ta, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Ta */          { phrase_ta, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Ta */
         { in_line_eoln, MDOC_PROLOGUE }, /* ll */  
 };  };
 const   struct mdoc_macro *const mdoc_macros = __mdoc_macros - MDOC_Dd;  const   struct mdoc_macro *const mdoc_macros = __mdoc_macros - MDOC_Dd;
   
Line 250  lookup(struct roff_man *mdoc, int from, int line, int 
Line 249  lookup(struct roff_man *mdoc, int from, int line, int 
                 if (res != TOKEN_NONE) {                  if (res != TOKEN_NONE) {
                         if (mdoc_macros[res].flags & MDOC_CALLABLE)                          if (mdoc_macros[res].flags & MDOC_CALLABLE)
                                 return res;                                  return res;
                         if (res != MDOC_sp && res != MDOC_ll)                          if (res != MDOC_sp)
                                 mandoc_msg(MANDOCERR_MACRO_CALL,                                  mandoc_msg(MANDOCERR_MACRO_CALL,
                                     mdoc->parse, line, ppos, p);                                      mdoc->parse, line, ppos, p);
                 }                  }

Legend:
Removed from v.1.221  
changed lines
  Added in v.1.222

CVSweb