summaryrefslogtreecommitdiffstats
path: root/contrib/tcsh/sh.h
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2000-06-10 22:20:53 +0000
committerobrien <obrien@FreeBSD.org>2000-06-10 22:20:53 +0000
commit88bc1777b94746317563725d00d1cc291bbf9b0c (patch)
tree4d7dddd3207468aa59b04bfbc3e2da7e9ae904b0 /contrib/tcsh/sh.h
parent87ba46f5589fc1e4024822d98ffd67cd03314085 (diff)
downloadFreeBSD-src-88bc1777b94746317563725d00d1cc291bbf9b0c.zip
FreeBSD-src-88bc1777b94746317563725d00d1cc291bbf9b0c.tar.gz
Offical fixes to allow longer lines in the history and tweak expand_lex()
useage.
Diffstat (limited to 'contrib/tcsh/sh.h')
-rw-r--r--contrib/tcsh/sh.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tcsh/sh.h b/contrib/tcsh/sh.h
index 2305433..b2c8b1e 100644
--- a/contrib/tcsh/sh.h
+++ b/contrib/tcsh/sh.h
@@ -1,4 +1,4 @@
-/* $Header: /src/pub/tcsh/sh.h,v 3.87 2000/01/14 22:57:28 christos Exp $ */
+/* $Header: /src/pub/tcsh/sh.h,v 3.88 2000/06/10 22:06:27 kim Exp $ */
/*
* sh.h: Catch it all globals and includes file!
*/
@@ -121,12 +121,12 @@ typedef int sigret_t;
* MAILINTVL How often to mailcheck; more often is more expensive
*/
#ifdef BUFSIZE
-# if BUFSIZE < 1024
+# if BUFSIZE < 4096
# undef BUFSIZE
-# define BUFSIZE 1024 /* buffer size should be no less than this */
+# define BUFSIZE 4096 /* buffer size should be no less than this */
# endif
#else
-# define BUFSIZE 1024
+# define BUFSIZE 4096
#endif /* BUFSIZE */
#define FORKSLEEP 10 /* delay loop on non-interactive fork failure */
OpenPOWER on IntegriCloud