TerminalView.st
changeset 4288 2cf48c1738f7
parent 4287 22ed06f6e073
child 4290 bad371611ba6
--- a/TerminalView.st	Sun Jul 21 16:35:49 2013 +0200
+++ b/TerminalView.st	Tue Jul 23 11:17:06 2013 +0200
@@ -18,7 +18,7 @@
 		rangeEndLine state savedCursor shellCommand shellDirectory
 		filterStream localEcho translateNLToCRNL inputTranslateCRToNL
 		autoWrapFlag masterWindow'
-	classVariableNames:'Debug'
+	classVariableNames:'Debug DebugKeyboard'
 	poolDictionaries:''
 	category:'Views-TerminalViews'
 !
@@ -1110,7 +1110,7 @@
     super initialize.
 
     showMatchingParenthesis := false.
-    insertMode := false.
+    self insertMode: false.
     alwaysAppendAtEnd := false.
     collectSize := 100.
     st80Mode := false.
@@ -1626,7 +1626,7 @@
     access critical:[
         |index controlCharIndex stringWithOutControl crnlFollows|
 
-        inFlush := true.    "/ locks out any delayed endEntry from doing anything!!
+        "/ inFlush := true.    "/ locks out any delayed endEntry from doing anything!!
 
         index := 1.
         [index <= count] whileTrue:[
@@ -2052,11 +2052,11 @@
 !TerminalView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.146 2013-07-21 14:35:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.147 2013-07-23 09:17:06 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.146 2013-07-21 14:35:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/TerminalView.st,v 1.147 2013-07-23 09:17:06 cg Exp $'
 ! !