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

Diff for /src/usr.bin/mandoc/eqn.c between version 1.12 and 1.13

version 1.12, 2014/10/09 15:21:46 version 1.13, 2014/10/09 15:59:08
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * 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 587 
Line 587 
                         NULL != last->last->prev &&                          NULL != last->last->prev &&
                         EQNPOS_SUB == last->last->prev->pos)                          EQNPOS_SUB == last->last->prev->pos)
                         last->last->prev->pos = EQNPOS_SUBSUP;                          last->last->prev->pos = EQNPOS_SUBSUP;
                   else if (EQNPOS_TO == i &&
                           NULL != last->last->prev &&
                           EQNPOS_FROM == last->last->prev->pos)
                           last->last->prev->pos = EQNPOS_FROMTO;
                 else                  else
                         last->last->pos = (enum eqn_post)i;                          last->last->pos = (enum eqn_post)i;
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13