class: Smalltalk
authorClaus Gittinger <cg@exept.de>
Wed, 22 May 2013 01:28:19 +0200
changeset 15265 9a8afa1b41cb
parent 15264 82b78761c585
child 15266 492c875c88b8
child 18060 3708e12e9aa8
class: Smalltalk changed: #basicInitializeSystem
Smalltalk.st
--- a/Smalltalk.st	Tue May 21 22:45:30 2013 +0200
+++ b/Smalltalk.st	Wed May 22 01:28:19 2013 +0200
@@ -227,17 +227,17 @@
      right after startup, ususally immediately followed by Smalltalk>>start.
      [with error handling, via the initializeSystem]
      Notice:
-	this is not called when an image is restarted; in this
-	case the show starts in Smalltalk>>restart."
+        this is not called when an image is restarted; in this
+        case the show starts in Smalltalk>>restart."
 
     Compiler := ByteCodeCompiler.
     Compiler isNil ifTrue:[
-	"
-	 ByteCodeCompiler is not in the system (i.e. has not been linked in)
-	 this allows at least immediate evaluations for runtime systems without compiler
-	 NOTICE: a parser is always needed, otherwise we cannot read resource files etc.
-	"
-	Compiler := Parser
+        "
+         ByteCodeCompiler is not in the system (i.e. has not been linked in)
+         this allows at least immediate evaluations for runtime systems without compiler
+         NOTICE: a parser is always needed, otherwise we cannot read resource files etc.
+        "
+        Compiler := Parser
     ].
 
     "/
@@ -251,6 +251,7 @@
     "/ sorry - there are some, which MUST be initialized before ..
     "/ reason: if any error happens during init, we need Signals, Stdout etc. to be there
     "/
+    SmallInteger initialize.
     Object initialize.
     Stream initialize.
     PositionableStream initialize.
@@ -7901,11 +7902,11 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.1026 2013-05-07 15:29:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.1027 2013-05-21 23:28:19 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.1026 2013-05-07 15:29:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.1027 2013-05-21 23:28:19 cg Exp $'
 !
 
 version_SVN