[Vm-dev] [commit][3413] VMMaker 4.14.1

commits at squeakvm.org commits at squeakvm.org
Wed Jul 22 03:28:03 UTC 2015


Revision: 3413
Author:   lewis
Date:     2015-07-21 20:28:02 -0700 (Tue, 21 Jul 2015)
Log Message:
-----------
VMMaker 4.14.1

Eliot's fix for sqComplexEvent on 64-bit object memory to support iOS VM.

Requires platforms source version SVN 3412 or greater.

Background:

In sq.h, the sqInputEvent struct was originally defined with all fields of type int. These fields are accessed in primitiveGetNextEvent by treating the sqInputEvent struct as an array of int. The sqComplexEvent struct variation was introduced for the iOS VM, and uses one of the available fields to store an object pointer of type usqInt.

In the case of a 64 bit object memory, sizeof(usqInt) is 8, and the object pointer cannot be stored in a C variable of type int. Therefore, change the declaration of all sqInputEvent data structures to have fields of type long, which are large enough to store objects pointers on all platforms of interest. This allows the event struct to safely store both integers and object pointers regardless of object memory word size.

Modified Paths:
--------------
    trunk/src/ckformat.c
    trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c
    trunk/src/plugins/AioPlugin/AioPlugin.c
    trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
    trunk/src/plugins/B2DPlugin/B2DPlugin.c
    trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
    trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c
    trunk/src/plugins/BitBltPlugin/BitBltPlugin.c
    trunk/src/plugins/CameraPlugin/CameraPlugin.c
    trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
    trunk/src/plugins/CroquetPlugin/CroquetPlugin.c
    trunk/src/plugins/DBusPlugin/DBusPlugin.c
    trunk/src/plugins/DSAPrims/DSAPrims.c
    trunk/src/plugins/DropPlugin/DropPlugin.c
    trunk/src/plugins/FFTPlugin/FFTPlugin.c
    trunk/src/plugins/FT2Plugin/FT2Plugin.c
    trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c
    trunk/src/plugins/FilePlugin/FilePlugin.c
    trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c
    trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c
    trunk/src/plugins/GeniePlugin/GeniePlugin.c
    trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c
    trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
    trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c
    trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
    trunk/src/plugins/KedamaPlugin2/KedamaPlugin2.c
    trunk/src/plugins/Klatt/Klatt.c
    trunk/src/plugins/LargeIntegers/LargeIntegers.c
    trunk/src/plugins/LocalePlugin/LocalePlugin.c
    trunk/src/plugins/MIDIPlugin/MIDIPlugin.c
    trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c
    trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c
    trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c
    trunk/src/plugins/RePlugin/RePlugin.c
    trunk/src/plugins/RomePlugin/RomePlugin.c
    trunk/src/plugins/ScratchPlugin/ScratchPlugin.c
    trunk/src/plugins/SecurityPlugin/SecurityPlugin.c
    trunk/src/plugins/SerialPlugin/SerialPlugin.c
    trunk/src/plugins/SocketPlugin/SocketPlugin.c
    trunk/src/plugins/SoundCodecPrims/SoundCodecPrims.c
    trunk/src/plugins/SoundGenerationPlugin/SoundGenerationPlugin.c
    trunk/src/plugins/SoundPlugin/SoundPlugin.c
    trunk/src/plugins/Squeak3D/Squeak3D.c
    trunk/src/plugins/SqueakFFIPrims/SqueakFFIPrims.c
    trunk/src/plugins/SqueakSSL/SqueakSSL.c
    trunk/src/plugins/StarSqueakPlugin/StarSqueakPlugin.c
    trunk/src/plugins/UUIDPlugin/UUIDPlugin.c
    trunk/src/plugins/UnicodePlugin/UnicodePlugin.c
    trunk/src/plugins/UnixOSProcessPlugin/UnixOSProcessPlugin.c
    trunk/src/plugins/WeDoPlugin/WeDoPlugin.c
    trunk/src/plugins/XDisplayControlPlugin/XDisplayControlPlugin.c
    trunk/src/plugins/ZipPlugin/ZipPlugin.c
    trunk/src/plugins.int
    trunk/src/vm/interp.c
    trunk/src/vm/interp.h
    trunk/src/vm/sqNamedPrims.h

Modified: trunk/src/ckformat.c
===================================================================
--- trunk/src/ckformat.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/ckformat.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -5,7 +5,7 @@
 /* Usage: ckformat imageFileName */
 
 /* --- DO NOT EDIT THIS FILE --- */
-/* --- Automatically generated from class ImageFormat 2015-03-28T20:15:59.567+01:00--- */
+/* --- Automatically generated from class ImageFormat 2015-07-21T23:16:08.306+01:00--- */
 /* --- Source code is in package ImageFormat in the VMMaker repository --- */
 /* --- DO NOT EDIT THIS FILE --- */
 

Modified: trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c
===================================================================
--- trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/ADPCMCodecPlugin/ADPCMCodecPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:48 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:49 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	ADPCMCodecPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	ADPCMCodecPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "ADPCMCodecPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "ADPCMCodecPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ADPCMCodecPlugin 28 March 2015 (i)"
+	"ADPCMCodecPlugin 21 July 2015 (i)"
 #else
-	"ADPCMCodecPlugin 28 March 2015 (e)"
+	"ADPCMCodecPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/AioPlugin/AioPlugin.c
===================================================================
--- trunk/src/plugins/AioPlugin/AioPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/AioPlugin/AioPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:59 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:07 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
 	UnixAioPlugin VMConstruction-Plugins-AioPlugin-eem.18 uuid: c426ab70-05a2-43a1-a899-e324aaf8f92f
  */
@@ -86,9 +86,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"AioPlugin 28 March 2015 (i)"
+	"AioPlugin 21 July 2015 (i)"
 #else
-	"AioPlugin 28 March 2015 (e)"
+	"AioPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c
===================================================================
--- trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/AsynchFilePlugin/AsynchFilePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:48 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:49 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	AsynchFilePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	AsynchFilePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "AsynchFilePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "AsynchFilePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -67,9 +67,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"AsynchFilePlugin 28 March 2015 (i)"
+	"AsynchFilePlugin 21 July 2015 (i)"
 #else
-	"AsynchFilePlugin 28 March 2015 (e)"
+	"AsynchFilePlugin 21 July 2015 (e)"
 #endif
 ;
 static void * sCOAFfn;

Modified: trunk/src/plugins/B2DPlugin/B2DPlugin.c
===================================================================
--- trunk/src/plugins/B2DPlugin/B2DPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/B2DPlugin/B2DPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:50 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:52 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	BalloonEnginePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	BalloonEnginePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "BalloonEnginePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "BalloonEnginePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -447,9 +447,9 @@
 static void * loadBBFn;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"B2DPlugin 28 March 2015 (i)"
+	"B2DPlugin 21 July 2015 (i)"
 #else
-	"B2DPlugin 28 March 2015 (e)"
+	"B2DPlugin 21 July 2015 (e)"
 #endif
 ;
 static int* objBuffer;

Modified: trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c
===================================================================
--- trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/B3DAcceleratorPlugin/B3DAcceleratorPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:54 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:59 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	B3DAcceleratorPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	B3DAcceleratorPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "B3DAcceleratorPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "B3DAcceleratorPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -107,9 +107,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"B3DAcceleratorPlugin 28 March 2015 (i)"
+	"B3DAcceleratorPlugin 21 July 2015 (i)"
 #else
-	"B3DAcceleratorPlugin 28 March 2015 (e)"
+	"B3DAcceleratorPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c
===================================================================
--- trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/BMPReadWriterPlugin/BMPReadWriterPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:48 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:49 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	BMPReadWriterPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	BMPReadWriterPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "BMPReadWriterPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "BMPReadWriterPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -58,9 +58,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"BMPReadWriterPlugin 28 March 2015 (i)"
+	"BMPReadWriterPlugin 21 July 2015 (i)"
 #else
-	"BMPReadWriterPlugin 28 March 2015 (e)"
+	"BMPReadWriterPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/BitBltPlugin/BitBltPlugin.c
===================================================================
--- trunk/src/plugins/BitBltPlugin/BitBltPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/BitBltPlugin/BitBltPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:54 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	BitBltSimulation VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	BitBltSimulation * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "BitBltSimulation VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "BitBltSimulation * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -256,9 +256,9 @@
 };
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"BitBltPlugin 28 March 2015 (i)"
+	"BitBltPlugin 21 July 2015 (i)"
 #else
-	"BitBltPlugin 28 March 2015 (e)"
+	"BitBltPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt nWords;
@@ -2671,7 +2671,6 @@
 			cmSize = interpreterProxy->slotSizeOf(cmOop);
 			cmLookupTable = (unsigned int *)interpreterProxy->firstIndexableField(cmOop);
 			oldStyle = 1;
-			;
 		} else {
 			if (!((interpreterProxy->isPointers(cmOop)) && ((interpreterProxy->slotSizeOf(cmOop)) >= 3))) {
 				ok = 0;

Modified: trunk/src/plugins/CameraPlugin/CameraPlugin.c
===================================================================
--- trunk/src/plugins/CameraPlugin/CameraPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/CameraPlugin/CameraPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:54 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	CameraPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	CameraPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "CameraPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "CameraPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -64,9 +64,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"CameraPlugin 28 March 2015 (i)"
+	"CameraPlugin 21 July 2015 (i)"
 #else
-	"CameraPlugin 28 March 2015 (e)"
+	"CameraPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c
===================================================================
--- trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/ClipboardExtendedPlugin/ClipboardExtendedPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:54 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	ClipboardExtendedPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	ClipboardExtendedPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "ClipboardExtendedPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "ClipboardExtendedPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -61,9 +61,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ClipboardExtendedPlugin 28 March 2015 (i)"
+	"ClipboardExtendedPlugin 21 July 2015 (i)"
 #else
-	"ClipboardExtendedPlugin 28 March 2015 (e)"
+	"ClipboardExtendedPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/CroquetPlugin/CroquetPlugin.c
===================================================================
--- trunk/src/plugins/CroquetPlugin/CroquetPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/CroquetPlugin/CroquetPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:54 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	CroquetPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	CroquetPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "CroquetPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "CroquetPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -73,9 +73,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"CroquetPlugin 28 March 2015 (i)"
+	"CroquetPlugin 21 July 2015 (i)"
 #else
-	"CroquetPlugin 28 March 2015 (e)"
+	"CroquetPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/DBusPlugin/DBusPlugin.c
===================================================================
--- trunk/src/plugins/DBusPlugin/DBusPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/DBusPlugin/DBusPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:55 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:01 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
 	DBusPlugin DBus-Plugin-dtl.35 uuid: 2ae30f08-4793-4acb-876b-c443a5f5e665
  */
@@ -143,9 +143,9 @@
 static DBusMessageIter messageIter[DBUS_MAXIMUM_TYPE_RECURSION_DEPTH];
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"DBusPlugin 28 March 2015 (i)"
+	"DBusPlugin 21 July 2015 (i)"
 #else
-	"DBusPlugin 28 March 2015 (e)"
+	"DBusPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/DSAPrims/DSAPrims.c
===================================================================
--- trunk/src/plugins/DSAPrims/DSAPrims.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/DSAPrims/DSAPrims.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:54 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	DSAPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	DSAPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "DSAPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "DSAPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -67,9 +67,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"DSAPrims 28 March 2015 (i)"
+	"DSAPrims 21 July 2015 (i)"
 #else
-	"DSAPrims 28 March 2015 (e)"
+	"DSAPrims 21 July 2015 (e)"
 #endif
 ;
 static sqInt remainderDigitCount;

Modified: trunk/src/plugins/DropPlugin/DropPlugin.c
===================================================================
--- trunk/src/plugins/DropPlugin/DropPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/DropPlugin/DropPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	DropPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	DropPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "DropPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "DropPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -62,9 +62,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"DropPlugin 28 March 2015 (i)"
+	"DropPlugin 21 July 2015 (i)"
 #else
-	"DropPlugin 28 March 2015 (e)"
+	"DropPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FFTPlugin/FFTPlugin.c
===================================================================
--- trunk/src/plugins/FFTPlugin/FFTPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FFTPlugin/FFTPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	FFTPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	FFTPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "FFTPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "FFTPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -68,9 +68,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FFTPlugin 28 March 2015 (i)"
+	"FFTPlugin 21 July 2015 (i)"
 #else
-	"FFTPlugin 28 March 2015 (e)"
+	"FFTPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt nu;

Modified: trunk/src/plugins/FT2Plugin/FT2Plugin.c
===================================================================
--- trunk/src/plugins/FT2Plugin/FT2Plugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FT2Plugin/FT2Plugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,4 +1,4 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:55 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:02 pm */
 /* Automatically generated by
 	FT2PluginCodeGenerator * FreeType-nice.443 uuid: d8120335-a67f-4a64-94ea-90145046f7dc
    from
@@ -121,9 +121,9 @@
 static FT_Library library;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FT2Plugin 28 March 2015 (i)"
+	"FT2Plugin 21 July 2015 (i)"
 #else
-	"FT2Plugin 28 March 2015 (e)"
+	"FT2Plugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c
===================================================================
--- trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FileCopyPlugin/FileCopyPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:55 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:02 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	FileCopyPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	FileCopyPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "FileCopyPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "FileCopyPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -57,9 +57,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FileCopyPlugin 28 March 2015 (i)"
+	"FileCopyPlugin 21 July 2015 (i)"
 #else
-	"FileCopyPlugin 28 March 2015 (e)"
+	"FileCopyPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/FilePlugin/FilePlugin.c
===================================================================
--- trunk/src/plugins/FilePlugin/FilePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FilePlugin/FilePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	FilePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	FilePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "FilePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "FilePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -100,9 +100,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FilePlugin 28 March 2015 (i)"
+	"FilePlugin 21 July 2015 (i)"
 #else
-	"FilePlugin 28 March 2015 (e)"
+	"FilePlugin 21 July 2015 (e)"
 #endif
 ;
 static void * sCCPfn;

Modified: trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c
===================================================================
--- trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FloatArrayPlugin/FloatArrayPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	FloatArrayPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	FloatArrayPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "FloatArrayPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "FloatArrayPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -72,9 +72,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FloatArrayPlugin 28 March 2015 (i)"
+	"FloatArrayPlugin 21 July 2015 (i)"
 #else
-	"FloatArrayPlugin 28 March 2015 (e)"
+	"FloatArrayPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c
===================================================================
--- trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/FloatMathPlugin/FloatMathPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:55 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	FloatMathPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	FloatMathPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "FloatMathPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "FloatMathPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -79,9 +79,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"FloatMathPlugin 28 March 2015 (i)"
+	"FloatMathPlugin 21 July 2015 (i)"
 #else
-	"FloatMathPlugin 28 March 2015 (e)"
+	"FloatMathPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/GeniePlugin/GeniePlugin.c
===================================================================
--- trunk/src/plugins/GeniePlugin/GeniePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/GeniePlugin/GeniePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:51 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:56 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	GeniePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	GeniePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "GeniePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "GeniePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -61,9 +61,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"GeniePlugin v2.0 28 March 2015 (i)"
+	"GeniePlugin v2.0 21 July 2015 (i)"
 #else
-	"GeniePlugin v2.0 28 March 2015 (e)"
+	"GeniePlugin v2.0 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c
===================================================================
--- trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/HostWindowPlugin/HostWindowPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:56 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:03 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	HostWindowPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	HostWindowPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "HostWindowPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "HostWindowPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -66,9 +66,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"HostWindowPlugin 28 March 2015 (i)"
+	"HostWindowPlugin 21 July 2015 (i)"
 #else
-	"HostWindowPlugin 28 March 2015 (e)"
+	"HostWindowPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c
===================================================================
--- trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/JPEGReadWriter2Plugin/JPEGReadWriter2Plugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:56 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	JPEGReadWriter2Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	JPEGReadWriter2Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "JPEGReadWriter2Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "JPEGReadWriter2Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -68,9 +68,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JPEGReadWriter2Plugin 28 March 2015 (i)"
+	"JPEGReadWriter2Plugin 21 July 2015 (i)"
 #else
-	"JPEGReadWriter2Plugin 28 March 2015 (e)"
+	"JPEGReadWriter2Plugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c
===================================================================
--- trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/JPEGReaderPlugin/JPEGReaderPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:56 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	JPEGReaderPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	JPEGReaderPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "JPEGReaderPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "JPEGReaderPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -136,9 +136,9 @@
 static sqInt jsReadLimit;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JPEGReaderPlugin 28 March 2015 (i)"
+	"JPEGReaderPlugin 21 July 2015 (i)"
 #else
-	"JPEGReaderPlugin 28 March 2015 (e)"
+	"JPEGReaderPlugin 21 July 2015 (e)"
 #endif
 ;
 static int *residuals;

Modified: trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c
===================================================================
--- trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/JoystickTabletPlugin/JoystickTabletPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:56 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	JoystickTabletPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	JoystickTabletPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "JoystickTabletPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "JoystickTabletPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -62,9 +62,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"JoystickTabletPlugin 28 March 2015 (i)"
+	"JoystickTabletPlugin 21 July 2015 (i)"
 #else
-	"JoystickTabletPlugin 28 March 2015 (e)"
+	"JoystickTabletPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/KedamaPlugin2/KedamaPlugin2.c
===================================================================
--- trunk/src/plugins/KedamaPlugin2/KedamaPlugin2.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/KedamaPlugin2/KedamaPlugin2.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:57 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:04 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
 	KedamaPlugin2 Kedama-Plugins-yo.1 uuid: 3fc7d691-0149-ba4d-a339-5d27cd44a2f8
  */
@@ -123,9 +123,9 @@
 static unsigned int kedamaRandomSeed;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"KedamaPlugin2 28 March 2015 (i)"
+	"KedamaPlugin2 21 July 2015 (i)"
 #else
-	"KedamaPlugin2 28 March 2015 (e)"
+	"KedamaPlugin2 21 July 2015 (e)"
 #endif
 ;
 static unsigned int randA;

Modified: trunk/src/plugins/Klatt/Klatt.c
===================================================================
--- trunk/src/plugins/Klatt/Klatt.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/Klatt/Klatt.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:56 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	KlattSynthesizerPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	KlattSynthesizerPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "KlattSynthesizerPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "KlattSynthesizerPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -155,9 +155,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Klatt 28 March 2015 (i)"
+	"Klatt 21 July 2015 (i)"
 #else
-	"Klatt 28 March 2015 (e)"
+	"Klatt 21 July 2015 (e)"
 #endif
 ;
 static float nlast;

Modified: trunk/src/plugins/LargeIntegers/LargeIntegers.c
===================================================================
--- trunk/src/plugins/LargeIntegers/LargeIntegers.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/LargeIntegers/LargeIntegers.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:57 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	LargeIntegersPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	LargeIntegersPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "LargeIntegersPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "LargeIntegersPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 

Modified: trunk/src/plugins/LocalePlugin/LocalePlugin.c
===================================================================
--- trunk/src/plugins/LocalePlugin/LocalePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/LocalePlugin/LocalePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:52 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:57 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	LocalePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	LocalePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "LocalePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "LocalePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -71,9 +71,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"LocalePlugin 28 March 2015 (i)"
+	"LocalePlugin 21 July 2015 (i)"
 #else
-	"LocalePlugin 28 March 2015 (e)"
+	"LocalePlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/MIDIPlugin/MIDIPlugin.c
===================================================================
--- trunk/src/plugins/MIDIPlugin/MIDIPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/MIDIPlugin/MIDIPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:57 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:04 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	MIDIPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	MIDIPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "MIDIPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "MIDIPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"MIDIPlugin 28 March 2015 (i)"
+	"MIDIPlugin 21 July 2015 (i)"
 #else
-	"MIDIPlugin 28 March 2015 (e)"
+	"MIDIPlugin 21 July 2015 (e)"
 #endif
 ;
 static sqInt simulator;

Modified: trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c
===================================================================
--- trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/Matrix2x3Plugin/Matrix2x3Plugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:53 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:57 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	Matrix2x3Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	Matrix2x3Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "Matrix2x3Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "Matrix2x3Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -74,9 +74,9 @@
 static double m23ResultY;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Matrix2x3Plugin 28 March 2015 (i)"
+	"Matrix2x3Plugin 21 July 2015 (i)"
 #else
-	"Matrix2x3Plugin 28 March 2015 (e)"
+	"Matrix2x3Plugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c
===================================================================
--- trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/MiscPrimitivePlugin/MiscPrimitivePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:53 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:58 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	MiscPrimitivePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	MiscPrimitivePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "MiscPrimitivePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "MiscPrimitivePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -70,9 +70,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"MiscPrimitivePlugin 28 March 2015 (i)"
+	"MiscPrimitivePlugin 21 July 2015 (i)"
 #else
-	"MiscPrimitivePlugin 28 March 2015 (e)"
+	"MiscPrimitivePlugin 21 July 2015 (e)"
 #endif
 ;
 
@@ -672,7 +672,7 @@
 		pushInteger(0);
 		return null;
 	}
-	for (startIndex = start, startIndexLimiT = (((sizeOfSTArrayFromCPrimitive(body + 1)) - (sizeOfSTArrayFromCPrimitive(key + 1))) + 1); startIndex <= startIndexLimiT; startIndex += 1) {
+	for (startIndex = (((start < 1) ? 1 : start)), startIndexLimiT = (((sizeOfSTArrayFromCPrimitive(body + 1)) - (sizeOfSTArrayFromCPrimitive(key + 1))) + 1); startIndex <= startIndexLimiT; startIndex += 1) {
 		index = 1;
 		while ((matchTable[(asciiValue(body[(startIndex + index) - 1])) + 1]) == (matchTable[(asciiValue(key[index])) + 1])) {
 			if (index == (sizeOfSTArrayFromCPrimitive(key + 1))) {

Modified: trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c
===================================================================
--- trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/Mpeg3Plugin/Mpeg3Plugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:57 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:05 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	Mpeg3Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	Mpeg3Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "Mpeg3Plugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "Mpeg3Plugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -101,9 +101,9 @@
 static sqInt maximumNumberOfFilesToWatch;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"Mpeg3Plugin 28 March 2015 (i)"
+	"Mpeg3Plugin 21 July 2015 (i)"
 #else
-	"Mpeg3Plugin 28 March 2015 (e)"
+	"Mpeg3Plugin 21 July 2015 (e)"
 #endif
 ;
 static mpeg3_t *mpegFiles[1024+1];

Modified: trunk/src/plugins/RePlugin/RePlugin.c
===================================================================
--- trunk/src/plugins/RePlugin/RePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/RePlugin/RePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:53 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:58 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	RePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	RePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "RePlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "RePlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -79,9 +79,9 @@
 static sqInt matchFlags;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"RePlugin 28 March 2015 (i)"
+	"RePlugin 21 July 2015 (i)"
 #else
-	"RePlugin 28 March 2015 (e)"
+	"RePlugin 21 July 2015 (e)"
 #endif
 ;
 static int netMemory = 0;

Modified: trunk/src/plugins/RomePlugin/RomePlugin.c
===================================================================
--- trunk/src/plugins/RomePlugin/RomePlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/RomePlugin/RomePlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,6 +1,6 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:58 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:06 pm */
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SmartSyntaxPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
 	RomePlugin Rome-Plugin-dtl.40 uuid: fc8fcc8b-edca-42ec-90db-24190e3e33fd
  */
@@ -199,9 +199,9 @@
 static sqInt maxSurfaceID;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"RomePlugin dtl.40 28 March 2015 (i)"
+	"RomePlugin dtl.40 21 July 2015 (i)"
 #else
-	"RomePlugin dtl.40 28 March 2015 (e)"
+	"RomePlugin dtl.40 21 July 2015 (e)"
 #endif
 ;
 static fn_ioRegisterSurface registerSurfaceFn;

Modified: trunk/src/plugins/ScratchPlugin/ScratchPlugin.c
===================================================================
--- trunk/src/plugins/ScratchPlugin/ScratchPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/ScratchPlugin/ScratchPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:58 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:16:06 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	ScratchPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	ScratchPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */
-static char __buildInfo[] = "ScratchPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00 " __DATE__ ;
+static char __buildInfo[] = "ScratchPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38 " __DATE__ ;
 
 
 
@@ -86,9 +86,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"ScratchPlugin 28 March 2015 (i)"
+	"ScratchPlugin 21 July 2015 (i)"
 #else
-	"ScratchPlugin 28 March 2015 (e)"
+	"ScratchPlugin 21 July 2015 (e)"
 #endif
 ;
 

Modified: trunk/src/plugins/SecurityPlugin/SecurityPlugin.c
===================================================================
--- trunk/src/plugins/SecurityPlugin/SecurityPlugin.c	2015-07-22 03:26:17 UTC (rev 3412)
+++ trunk/src/plugins/SecurityPlugin/SecurityPlugin.c	2015-07-22 03:28:02 UTC (rev 3413)
@@ -1,10 +1,10 @@
-/* Smalltalk from Squeak4.5 with VMMaker 4.13.12 translated as C source on 28 March 2015 8:15:53 pm */
+/* Smalltalk from Squeak4.5 with VMMaker 4.14.1 translated as C source on 21 July 2015 11:15:58 pm */
 /* Automatically generated by
-	VMPluginCodeGenerator VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	VMPluginCodeGenerator * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
    from
-	SecurityPlugin VMMaker-dtl.359 uuid: 3d5b8023-e045-437f-a85a-02036bc57e00
+	SecurityPlugin * VMMaker-dtl.367 uuid: fbd694df-9f36-40b7-bc0b-bfb2bd4b3d38
  */

@@ Diff output truncated at 50000 characters. @@


More information about the Vm-dev mailing list