[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.78 and 1.81

version 1.78, 2013/12/22 13:25:17 version 1.81, 2014/03/30 19:47:48
Line 2 
Line 2 
 /*  /*
  * 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 Ingo Schwarze <schwarze@openbsd.org>
    * 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
  * 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 90  const struct man_macro __man_macros[MAN_MAX] = {
Line 91  const struct man_macro __man_macros[MAN_MAX] = {
         { in_line_eoln, MAN_BSCOPE }, /* EE */          { in_line_eoln, MAN_BSCOPE }, /* EE */
         { blk_exp, MAN_BSCOPE | MAN_EXPLICIT }, /* UR */          { blk_exp, MAN_BSCOPE | MAN_EXPLICIT }, /* UR */
         { blk_close, 0 }, /* UE */          { blk_close, 0 }, /* UE */
           { in_line_eoln, 0 }, /* ll */
 };  };
   
 const   struct man_macro * const man_macros = __man_macros;  const   struct man_macro * const man_macros = __man_macros;
Line 437  in_line_eoln(MACRO_PROT_ARGS)
Line 439  in_line_eoln(MACRO_PROT_ARGS)
          */           */
   
         if (n != man->last &&          if (n != man->last &&
             mandoc_eos(man->last->string, strlen(man->last->string), 0))              mandoc_eos(man->last->string, strlen(man->last->string)))
                 man->last->flags |= MAN_EOS;                  man->last->flags |= MAN_EOS;
   
         /*          /*

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.81

CVSweb