#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 10 Apr 2019 06:00:19 +0200
changeset 4404 6e531fff6ba8
parent 4403 4649f9dd9614
child 4405 a8cd0c4d4599
#DOCUMENTATION by cg class: ObjectFileLoader class comment/format in: #loadObjectFile:
ObjectFileLoader.st
--- a/ObjectFileLoader.st	Wed Apr 03 22:40:09 2019 +0200
+++ b/ObjectFileLoader.st	Wed Apr 10 06:00:19 2019 +0200
@@ -1228,14 +1228,16 @@
     "load an object file (.o-file) into the image;
      the class name is not needed (multiple definitions may be in the file).
      This may be either a smalltalk object or a C-object file.
-     The object files init function (if any) is called, and the module
+     The object file's init function (if any) is called, and the module
      is unloaded if it returns failure (use lowLevel load, to load a file
      without automatic initialization).
      Return nil on error, an objectFile handle if ok."
 
     ^ self
-	loadObjectFile:aFileName
-	invokeInitializeMethods:true
+        loadObjectFile:aFileName
+        invokeInitializeMethods:true
+
+    "Modified (comment): / 10-04-2019 / 05:47:49 / Claus Gittinger"
 !
 
 loadObjectFile:pathNameOrFilename invokeInitializeMethods:invokeInitializeMethods