added #earlySystemInitialization change message (ST80 compat)
authorClaus Gittinger <cg@exept.de>
Tue, 11 Nov 1997 15:02:14 +0100
changeset 3096 881660d6e997
parent 3095 cdb753308f6e
child 3097 5d06fb326f0b
added #earlySystemInitialization change message (ST80 compat)
Smalltalk.st
--- a/Smalltalk.st	Mon Nov 03 16:35:38 1997 +0100
+++ b/Smalltalk.st	Tue Nov 11 15:02:14 1997 +0100
@@ -1867,6 +1867,8 @@
      there are three change-notifications made to dependents of ObjectMemory,
      which allow a stepwise re-init: #earlyRestart, #restarted and #returnFromSnapshot.
 
+     #earlySystemInstallation is sent for ST80 compatibility
+
      #earlyRestart is send first, nothing has been setup yet.
                    (should be used to flush all device dependent entries)
 
@@ -1943,6 +1945,8 @@
     Inspector := MiniInspector.
     Debugger := MiniDebugger.
 
+    ObjectMemory changed:#earlySystemInstallation.
+
     "/
     "/ reload any dynamically loaded objects.
     "/ this must be done before doing anything else below,
@@ -2021,7 +2025,7 @@
 
     self mainStartup:true
 
-    "Modified: 7.9.1997 / 23:35:33 / cg"
+    "Modified: / 8.11.1997 / 12:49:27 / cg"
 !
 
 start
@@ -4018,5 +4022,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.266 1997-11-03 15:24:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.267 1997-11-11 14:02:14 cg Exp $'
 ! !