# HG changeset patch # User Dan Nicolaescu # Date 1251318137 0 # Node ID f369eb846e57a3d601139a3d0e60c1e1ee0b499e # Parent cf947e01a2b64bce7a6c14711d9e48ec26c6331a (Fcall_process): Remove always true #if. diff -r cf947e01a2b6 -r f369eb846e57 src/ChangeLog --- a/src/ChangeLog Wed Aug 26 19:57:44 2009 +0000 +++ b/src/ChangeLog Wed Aug 26 20:22:17 2009 +0000 @@ -1,5 +1,7 @@ 2009-08-26 Dan Nicolaescu + * callproc.c (Fcall_process): Remove always true #if. + * lisp.h: Replace #if 0 code for checking with text pointing to the --enable-checking configure flag. diff -r cf947e01a2b6 -r f369eb846e57 src/callproc.c --- a/src/callproc.c Wed Aug 26 19:57:44 2009 +0000 +++ b/src/callproc.c Wed Aug 26 20:22:17 2009 +0000 @@ -793,13 +793,11 @@ if (process_coding.mode & CODING_MODE_LAST_BLOCK) break; -#if (CALLPROC_BUFFER_SIZE_MIN != CALLPROC_BUFFER_SIZE_MAX) /* Make the buffer bigger as we continue to read more data, but not past CALLPROC_BUFFER_SIZE_MAX. */ if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize) if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX) bufsize = CALLPROC_BUFFER_SIZE_MAX; -#endif if (display_p) {