]> git.eshelyaron.com Git - emacs.git/commitdiff
(wait_reading_process_input): Don't do adaptive read
authorKim F. Storm <storm@cua.dk>
Fri, 6 Feb 2004 23:52:36 +0000 (23:52 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 6 Feb 2004 23:52:36 +0000 (23:52 +0000)
buffering if waiting for a specific process.

src/ChangeLog
src/process.c

index 88fb2566f65cf3c6fbfd815a242137c3dacefc3d..15457e9abffc15f15a1ad602c2a30466681548dd 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-07  Kim F. Storm  <storm@cua.dk>
+
+       * process.c (wait_reading_process_input): Don't do adaptive read
+       buffering if waiting for a specific process.
+
 2004-02-05  Luc Teirlinck  <teirllm@auburn.edu>
 
        * minibuf.c (Fminibufferp, Fread_from_minibuffer)
index 52d9bf3fff5f6c3a727eeed70f4aabae55bf5b28..0db0638f85d7ba680fd43842d1547a1c6648c8bf 100644 (file)
@@ -4262,7 +4262,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
          else
            Available = input_wait_mask;
          check_connect = (num_pending_connects > 0);
-         check_delay = process_output_delay_count;
+         check_delay = wait_channel >= 0 ? 0 : process_output_delay_count;
        }
 
       /* If frame size has changed or the window is newly mapped,