EditTextView.st
changeset 6091 b45ae447ed43
parent 6070 18e8ef85aedf
child 6096 27f0da22dc30
--- a/EditTextView.st	Sat Feb 11 04:41:29 2017 +0000
+++ b/EditTextView.st	Sat Feb 11 09:12:56 2017 +0100
@@ -2904,16 +2904,17 @@
     "/
     "/ in st80Mode, the cursor may not be positioned
     "/ beyond the last line
-    "/ (but it must be posible to place it on one line below the last one
+    "/ (but it must be possible to place it on one line below the last one
     "/ - otherwise deleteSelection and some others fail to delete from previousToLastLine)
     "/
     self st80EditMode ifTrue:[
-	^ (line min:(list size + 1)) max:1
+        ^ (line min:(list size + 1)) max:1
     ].
     ^ line
 
-    "Created: / 22.5.1996 / 18:22:23 / cg"
-    "Modified: / 20.6.1998 / 18:19:26 / cg"
+    "Created: / 22-05-1996 / 18:22:23 / cg"
+    "Modified: / 20-06-1998 / 18:19:26 / cg"
+    "Modified (comment): / 11-02-2017 / 09:12:37 / cg"
 !
 
 withCursorOffDo:aBlock