[BACK]Return to mdoc_macro.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/mdoc_macro.c between version 1.57 and 1.58

version 1.57, 2010/10/01 21:38:26 version 1.58, 2010/10/16 13:38:29
Line 184 
Line 184 
         { 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 }, /* Ta */          { phrase_ta, MDOC_CALLABLE | MDOC_PARSED }, /* Ta */
           { blk_part_exp, MDOC_EXPLICIT }, /* TS */
           { blk_exp_close, MDOC_EXPLICIT }, /* TE */
 };  };
   
 const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;  const   struct mdoc_macro * const mdoc_macros = __mdoc_macros;
Line 307 
Line 309 
                 return(MDOC_So);                  return(MDOC_So);
         case (MDOC_Xc):          case (MDOC_Xc):
                 return(MDOC_Xo);                  return(MDOC_Xo);
           case (MDOC_TE):
                   return(MDOC_TS);
         default:          default:
                 return(tok);                  return(tok);
         }          }

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58