#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sat, 11 Feb 2017 09:12:56 +0100
changeset 6091 b45ae447ed43
parent 6090 e3bac5801405
child 6092 74624bb3e797
#DOCUMENTATION by cg class: EditTextView comment/format in: #validateCursorLine:
EditTextView.st
--- 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