do not update the changeset, when loading extensions
authorca
Fri, 11 Aug 2006 11:06:50 +0200
changeset 9523 84319324e99f
parent 9522 2b915c4197b7
child 9524 2af286bbcac3
do not update the changeset, when loading extensions
Smalltalk.st
--- a/Smalltalk.st	Fri Aug 11 11:04:09 2006 +0200
+++ b/Smalltalk.st	Fri Aug 11 11:06:50 2006 +0200
@@ -6094,7 +6094,9 @@
 
     f := packageDir construct:'extensions.st'.
     f exists ifTrue:[
-        f fileIn.
+        Class withoutUpdatingChangeSetDo:[
+            f fileIn.
+        ].
         SilentLoading ifFalse:[
             Transcript showCR:('loaded extensions: ' , f pathName).
         ].
@@ -6893,5 +6895,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.735 2006-08-10 11:45:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.736 2006-08-11 09:06:50 ca Exp $'
 ! !