Mercurial > emacs
changeset 104623:f369eb846e57
(Fcall_process): Remove always true #if.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 26 Aug 2009 20:22:17 +0000 |
parents | cf947e01a2b6 |
children | eee8a7124ad0 |
files | src/ChangeLog src/callproc.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <dann@ics.uci.edu> + * 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.
--- 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) {