EditTextView.st
changeset 6567 bb0ac8be28cc
parent 6564 60c2954e9dff
child 6572 9cec05d7dbff
--- a/EditTextView.st	Sun Mar 24 10:01:01 2019 +0100
+++ b/EditTextView.st	Sun Mar 24 10:01:15 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
@@ -3414,7 +3416,7 @@
         prevTab := (self prevTabBefore:cursorCol) max:1.
         ln := originalLine := (list at:cursorLine ifAbsent:'') ? ''.
         ln size < prevTab ifTrue:[
-            ln := ln , (String new:prevTab withAll:Character space).
+            ln := ln , (String new:prevTab).
         ].
         (ln copyTo:prevTab) isBlank ifTrue:[
             (ln copyFrom:prevTab+1) isBlank ifTrue:[
@@ -3483,7 +3485,8 @@
     ].
     wasOn ifTrue:[ self showCursor ]
 
-    "Modified: / 16.1.1998 / 22:33:04 / cg"
+    "Modified: / 16-01-1998 / 22:33:04 / cg"
+    "Modified: / 24-03-2019 / 09:57:57 / Claus Gittinger"
 !
 
 deleteCharsAtLine:lineNr fromCol:colNr