TerminalView.st
changeset 915 f2c934efc4da
parent 914 7ac6d1a53bab
child 916 d9626e722c21
--- a/TerminalView.st	Tue Jun 09 14:33:37 1998 +0200
+++ b/TerminalView.st	Tue Jun 09 15:51:55 1998 +0200
@@ -17,6 +17,9 @@
 
     [author:]
         Claus Gittinger
+
+    [start with:]
+        VT52TerminalView openShell
 "
 ! !
 
@@ -346,7 +349,7 @@
 
     p := ExternalStream makePTYPair.
     p isNil ifTrue:[
-        self halt.
+        self warn:'cannot open pty'.
         ^ self.
     ].
 
@@ -519,5 +522,5 @@
 !TerminalView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.1 1998-06-09 12:33:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.2 1998-06-09 13:51:55 cg Exp $'
 ! !