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

Diff for /mandoc/man.h between version 1.11 and 1.15

version 1.11, 2009/04/12 19:45:26 version 1.15, 2009/07/04 09:01:55
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>   * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
  *   *
  * 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 19 
Line 19 
   
 #include <time.h>  #include <time.h>
   
 #define MAN___           0  #define MAN_br           0
 #define MAN_TH           1  #define MAN_TH           1
 #define MAN_SH           2  #define MAN_SH           2
 #define MAN_SS           3  #define MAN_SS           3
Line 40 
Line 40 
 #define MAN_I            18  #define MAN_I            18
 #define MAN_IR           19  #define MAN_IR           19
 #define MAN_RI           20  #define MAN_RI           20
 #define MAN_br           21  #define MAN_na           21
 #define MAN_na           22  #define MAN_i            22
 #define MAN_i            23  #define MAN_MAX          23
 #define MAN_MAX          24  
   
 enum    man_type {  enum    man_type {
         MAN_TEXT,          MAN_TEXT,
Line 64  struct man_node {
Line 63  struct man_node {
         struct man_node *child;          struct man_node *child;
         struct man_node *next;          struct man_node *next;
         struct man_node *prev;          struct man_node *prev;
           int              nchild;
         int              line;          int              line;
         int              pos;          int              pos;
         int              tok;          int              tok;
Line 74  struct man_node {
Line 74  struct man_node {
         char            *string;          char            *string;
 };  };
   
 #define MAN_IGN_MACRO    (1 << 0) /* Ignore unknown macros. */  #define MAN_IGN_MACRO    (1 << 0)
   #define MAN_IGN_CHARS    (1 << 1)
   #define MAN_IGN_ESCAPE   (1 << 2)
   
 extern  const char *const *man_macronames;  extern  const char *const *man_macronames;
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.15

CVSweb