From 5fed303ec47a60b18848c6d926967632e1014782 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Wed, 13 Mar 1991 22:55:08 +0000
Subject: [PATCH] Made the output stream for a process buffer be full buffered
 rather than line buffered, so that the editor can punt redisplays to catch up
 on output.

---
 hemlock/shell.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hemlock/shell.lisp b/hemlock/shell.lisp
index acf71f3f8..25ab364e2 100644
--- a/hemlock/shell.lisp
+++ b/hemlock/shell.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/shell.lisp,v 1.1.1.4 1991/02/08 16:37:40 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/shell.lisp,v 1.1.1.5 1991/03/13 22:55:08 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -28,7 +28,7 @@
     (defhvar "Process Output Stream"
       "The process structure for this buffer."
       :buffer buffer
-      :value (make-hemlock-output-stream mark))
+      :value (make-hemlock-output-stream mark :full))
     (defhvar "Interactive History"
       "A ring of the regions input to an interactive mode (Eval or Typescript)."
       :buffer buffer
-- 
GitLab