[BACK]Return to defines.ds CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Diff for /src/usr.bin/less/Attic/defines.ds between version 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2011/09/16 17:47:04 version 1.1.1.2, 2014/04/25 13:33:45
Line 1 
Line 1 
 /*  /*
  * Copyright (C) 1984-2011  Mark Nudelman   * Copyright (C) 1984-2012  Mark Nudelman
  *   *
  * You may distribute under the terms of either the GNU General Public   * You may distribute under the terms of either the GNU General Public
  * License or the Less License, as specified in the README file.   * License or the Less License, as specified in the README file.
  *   *
  * For more information about less, or for information on how to   * For more information, see the README file.
  * contact the author, see the README file.  
  */   */
   
   
Line 186 
Line 185 
 /*  /*
  * Sizes of various buffers.   * Sizes of various buffers.
  */   */
   #if 0 /* old sizes for small memory machines
 #define CMDBUF_SIZE     512     /* Buffer for multichar commands */  #define CMDBUF_SIZE     512     /* Buffer for multichar commands */
 #define UNGOT_SIZE      100     /* Max chars to unget() */  #define UNGOT_SIZE      100     /* Max chars to unget() */
 #define LINEBUF_SIZE    1024    /* Max size of line in input file */  #define LINEBUF_SIZE    1024    /* Max size of line in input file */
Line 195 
Line 195 
 #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */  #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
 #define TAGLINE_SIZE    512     /* Max size of line in tags file */  #define TAGLINE_SIZE    512     /* Max size of line in tags file */
 #define TABSTOP_MAX     32      /* Max number of custom tab stops */  #define TABSTOP_MAX     32      /* Max number of custom tab stops */
   #else /* more reasonable sizes for modern machines */
   #define CMDBUF_SIZE     2048    /* Buffer for multichar commands */
   #define UNGOT_SIZE      200     /* Max chars to unget() */
   #define LINEBUF_SIZE    1024    /* Initial max size of line in input file */
   #define OUTBUF_SIZE     1024    /* Output buffer */
   #define PROMPT_SIZE     2048    /* Max size of prompt string */
   #define TERMBUF_SIZE    2048    /* Termcap buffer for tgetent */
   #define TERMSBUF_SIZE   1024    /* Buffer to hold termcap strings */
   #define TAGLINE_SIZE    1024    /* Max size of line in tags file */
   #define TABSTOP_MAX     128     /* Max number of custom tab stops */
   #endif
   
 /* Define to `long' if <sys/types.h> doesn't define.  */  /* Define to `long' if <sys/types.h> doesn't define.  */
 #if MSDOS_COMPILER==BORLANDC  #if MSDOS_COMPILER==BORLANDC
Line 321 
Line 332 
   
 /* Define if you have the <fcntl.h> header file.  */  /* Define if you have the <fcntl.h> header file.  */
 #define HAVE_FCNTL_H 1  #define HAVE_FCNTL_H 1
   
   /* Define HAVE_FLOAT if your compiler supports the "double" type. */
   #define HAVE_FLOAT 1
   
 /* Define if you have the <limits.h> header file.  */  /* Define if you have the <limits.h> header file.  */
 #define HAVE_LIMITS_H 1  #define HAVE_LIMITS_H 1

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2