TerminalView.st
changeset 2450 ac2ab4cbfb79
parent 2449 b16aece32285
child 2466 f986a03f160f
equal deleted inserted replaced
2449:b16aece32285 2450:ac2ab4cbfb79
  1332         readerProcess := [
  1332         readerProcess := [
  1333             [
  1333             [
  1334                 self waitUntilVisible.
  1334                 self waitUntilVisible.
  1335 
  1335 
  1336                 Stream streamErrorSignal handle:[:ex |
  1336                 Stream streamErrorSignal handle:[:ex |
  1337                     Transcript show:'Terminal [error]: '; showCR:ex errorString.
  1337                     Transcript show:'Terminal(PTY-reader) [error]: '; showCR:ex errorString.
  1338                     Transcript show:'Terminal [info]: '; showCR:OperatingSystem lastErrorString.
       
  1339                 ] do:[
  1338                 ] do:[
  1340                     [true] whileTrue:[
  1339                     [true] whileTrue:[
  1341                         Object abortSignal handle:[:ex |
  1340                         Object abortSignal handle:[:ex |
  1342                             self showCursor.
  1341                             self showCursor.
  1343                         ] do:[
  1342                         ] do:[
  1816 ! !
  1815 ! !
  1817 
  1816 
  1818 !TerminalView class methodsFor:'documentation'!
  1817 !TerminalView class methodsFor:'documentation'!
  1819 
  1818 
  1820 version
  1819 version
  1821     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.111 2003-02-27 14:38:51 stefan Exp $'
  1820     ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.112 2003-02-27 14:45:44 stefan Exp $'
  1822 ! !
  1821 ! !
  1823 
  1822 
  1824 TerminalView initialize!
  1823 TerminalView initialize!