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

Diff for /mandoc/term.c between version 1.60 and 1.61

version 1.60, 2009/03/16 22:19:19 version 1.61, 2009/03/16 23:37:28
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
  *   *
  * 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   * purpose with or without fee is hereby granted, provided that the
Line 149  DECL_PRE(termp_bsx);
Line 149  DECL_PRE(termp_bsx);
 DECL_PRE(termp_bt);  DECL_PRE(termp_bt);
 DECL_PRE(termp_cd);  DECL_PRE(termp_cd);
 DECL_PRE(termp_cm);  DECL_PRE(termp_cm);
   DECL_PRE(termp_dx);
 DECL_PRE(termp_em);  DECL_PRE(termp_em);
 DECL_PRE(termp_ex);  DECL_PRE(termp_ex);
 DECL_PRE(termp_fa);  DECL_PRE(termp_fa);
Line 298  const struct termact __termacts[MDOC_MAX] = {
Line 299  const struct termact __termacts[MDOC_MAX] = {
         { NULL, NULL }, /* %C */          { NULL, NULL }, /* %C */
         { NULL, NULL }, /* Es */          { NULL, NULL }, /* Es */
         { NULL, NULL }, /* En */          { NULL, NULL }, /* En */
           { termp_dx_pre, NULL }, /* Dx */
 };  };
   
 const struct termact *termacts = __termacts;  const struct termact *termacts = __termacts;
Line 1386  termp_ox_pre(DECL_ARGS)
Line 1388  termp_ox_pre(DECL_ARGS)
 {  {
   
         word(p, "OpenBSD");          word(p, "OpenBSD");
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_dx_pre(DECL_ARGS)
   {
   
           word(p, "DragonFly");
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb