StandaloneStartup.st
changeset 22692 9f3eab852dbb
parent 22332 0b9d2ed54342
child 23199 7aee2cc2ace7
--- a/StandaloneStartup.st	Mon Apr 23 17:11:04 2018 +0200
+++ b/StandaloneStartup.st	Mon Apr 23 17:11:50 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -864,14 +866,15 @@
 
 loadPatch:fileName
     self verboseInfo:('loading patch: ',fileName baseName).
-    [
+    ^ [
         Smalltalk silentFileIn:fileName.
     ] on:InvalidPatchError do:[:ex|
         self verboseInfo:('invalid patch: %1 error: %2'
                                  bindWith:fileName baseName with:ex messageText).
-        ^ false.
+        false.
     ].
-    ^ true
+
+    "Modified: / 23-04-2018 / 17:08:06 / stefan"
 !
 
 loadPatches