[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.27 and 1.29

version 1.27, 2009/08/20 11:51:07 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 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 */
         { NULL, NULL }, /* DT */          { pre_ign, NULL }, /* DT */
           { pre_ign, NULL }, /* UC */
 };  };
   
 #ifdef __linux__  #ifdef __linux__
Line 201  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.27  
changed lines
  Added in v.1.29

CVSweb