/[emacs]/emacs/src/callproc.c
ViewVC logotype

Diff of /emacs/src/callproc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.174 by miles, Wed Oct 3 01:12:03 2001 UTC revision 1.174.4.1 by rms, Mon Nov 26 00:37:40 2001 UTC
# Line 896  If you quit, the process is killed with Line 896  If you quit, the process is killed with
896             but not past 64k.  */             but not past 64k.  */
897          if (bufsize < 64 * 1024 && total_read > 32 * bufsize)          if (bufsize < 64 * 1024 && total_read > 32 * bufsize)
898            {            {
899                char *tempptr;
900              bufsize *= 2;              bufsize *= 2;
901              bufptr = (char *) alloca (bufsize);  
902                tempptr = (char *) alloca (bufsize);
903                bcopy (bufptr, tempptr, bufsize / 2);
904                bufptr = tempptr;
905            }            }
906    
907          if (!NILP (display) && INTERACTIVE)          if (!NILP (display) && INTERACTIVE)

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.174.4.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26