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

Diff for /mandoc/man_term.c between version 1.26 and 1.29

version 1.26, 2009/08/19 11:30:40 version 1.29, 2009/08/22 09:10:38
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR 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 74  static int    pre_SS(DECL_ARGS);
Line 76  static int    pre_SS(DECL_ARGS);
 static  int               pre_TP(DECL_ARGS);  static  int               pre_TP(DECL_ARGS);
 static  int               pre_br(DECL_ARGS);  static  int               pre_br(DECL_ARGS);
 static  int               pre_fi(DECL_ARGS);  static  int               pre_fi(DECL_ARGS);
   static  int               pre_ign(DECL_ARGS);
 static  int               pre_nf(DECL_ARGS);  static  int               pre_nf(DECL_ARGS);
 static  int               pre_r(DECL_ARGS);  static  int               pre_r(DECL_ARGS);
 static  int               pre_sp(DECL_ARGS);  static  int               pre_sp(DECL_ARGS);
Line 110  static const struct termact termacts[MAN_MAX] = {
Line 113  static const struct termact termacts[MAN_MAX] = {
         { pre_I, post_I }, /* I */          { pre_I, post_I }, /* I */
         { pre_IR, NULL }, /* IR */          { pre_IR, NULL }, /* IR */
         { pre_RI, NULL }, /* RI */          { pre_RI, NULL }, /* RI */
         { NULL, NULL }, /* na */ /* TODO: document that has no effect */          { NULL, NULL }, /* na */
         { pre_I, post_i }, /* i */          { pre_I, post_i }, /* i */
         { pre_sp, NULL }, /* sp */          { pre_sp, NULL }, /* sp */
         { pre_nf, NULL }, /* nf */          { pre_nf, NULL }, /* nf */
Line 118  static const struct termact termacts[MAN_MAX] = {
Line 121  static const struct termact termacts[MAN_MAX] = {
         { pre_r, NULL }, /* r */          { pre_r, NULL }, /* r */
         { NULL, NULL }, /* RE */          { NULL, NULL }, /* RE */
         { pre_RS, post_RS }, /* RS */          { pre_RS, post_RS }, /* RS */
           { pre_ign, NULL }, /* DT */
           { pre_ign, NULL }, /* UC */
 };  };
   
 #ifdef __linux__  #ifdef __linux__
Line 200  arg_width(const struct man_node *n)
Line 205  arg_width(const struct man_node *n)
                 return(atoi(p));                  return(atoi(p));
   
         return(-1);          return(-1);
   }
   
   
   /* ARGSUSED */
   static int
   pre_ign(DECL_ARGS)
   {
   
           return(0);
 }  }
   
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.29

CVSweb