[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.48 and 1.50

version 1.48, 2009/03/08 20:50:12 version 1.50, 2009/03/09 13:17:49
Line 16 
Line 16 
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  #include <err.h>
Line 276  const struct termact __termacts[MDOC_MAX] = {
Line 278  const struct termact __termacts[MDOC_MAX] = {
         { termp_ud_pre, NULL }, /* Ud */          { termp_ud_pre, NULL }, /* Ud */
         { termp_lb_pre, termp_lb_post }, /* Lb */          { termp_lb_pre, termp_lb_post }, /* Lb */
         { termp_ap_pre, NULL }, /* Lb */          { termp_ap_pre, NULL }, /* Lb */
           { termp_pp_pre, NULL }, /* Pp */
 };  };
   
 const struct termact *termacts = __termacts;  const struct termact *termacts = __termacts;

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.50

CVSweb