increased MAX_SEXP_SIZE to 65536

This commit is contained in:
chombier 2001-10-02 07:46:43 +00:00
parent 181c7b4992
commit 1127b09b4d
1 changed files with 2 additions and 1 deletions

View File

@ -243,7 +243,8 @@ static struct catch_command catch_sexp_exceptions
= STATIC_CATCH_COMMAND(EXC_ALL, EXC_SEXP_EOF, 1);
/* Arbitrary limit on file size. */
#define MAX_SEXP_SIZE 10000
/*#define MAX_SEXP_SIZE 10000*/
#define MAX_SEXP_SIZE 65536
static struct read_sexp_command read_sexp
= STATIC_READ_SEXP(SEXP_TRANSPORT, 1, MAX_SEXP_SIZE);