TerminalView.st
changeset 2341 9b19cf22a099
parent 2268 e3b57c072b89
child 2356 9a25fc1f8333
--- a/TerminalView.st	Tue Oct 29 13:59:09 2002 +0100
+++ b/TerminalView.st	Tue Oct 29 14:01:31 2002 +0100
@@ -1329,8 +1329,9 @@
 release
     "release myself - shut down the shell, stop the reader thread."
 
-    self closeDownShell.
-    self flushInput.
+    [self closeDownShell.
+     self flushInput.
+    ] fork.
     super release
 
     "Modified: / 5.5.1999 / 18:42:55 / cg"
@@ -1821,7 +1822,7 @@
 !TerminalView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.106 2002-10-10 07:38:23 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.107 2002-10-29 13:01:31 cg Exp $'
 ! !
 
 TerminalView initialize!