=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/Attic/defines.o9,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.2 diff -c -r1.1.1.1 -r1.1.1.2 *** src/usr.bin/less/Attic/defines.o9 2011/09/16 17:47:04 1.1.1.1 --- src/usr.bin/less/Attic/defines.o9 2014/04/25 13:33:46 1.1.1.2 *************** *** 1,11 **** /* ! * Copyright (C) 1984-2011 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * ! * For more information about less, or for information on how to ! * contact the author, see the README file. */ --- 1,10 ---- /* ! * Copyright (C) 1984-2012 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * ! * For more information, see the README file. */ *************** *** 174,179 **** --- 173,179 ---- /* * Sizes of various buffers. */ + #if 0 /* old sizes for small memory machines #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ *************** *** 183,188 **** --- 183,199 ---- #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #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 doesn't define. */ #define off_t long