[Vm-dev] [commit] r2607 - fix syntax errors

commits at squeakvm.org commits at squeakvm.org
Sun Sep 16 01:25:49 UTC 2012


Author: piumarta
Date: 2012-09-15 18:25:49 -0700 (Sat, 15 Sep 2012)
New Revision: 2607

Modified:
   trunk/platforms/win32/misc/gnuify
Log:
fix syntax errors

Modified: trunk/platforms/win32/misc/gnuify
===================================================================
--- trunk/platforms/win32/misc/gnuify	2012-09-16 01:25:14 UTC (rev 2606)
+++ trunk/platforms/win32/misc/gnuify	2012-09-16 01:25:49 UTC (rev 2607)
@@ -3,12 +3,11 @@
 # Rewrite the interpreter source in $1 to use GNU C extensions, writing the
 # modified file to stdout.  Author: Ian.Piumarta at inria.fr
 #
-# Last edited: Wed Dec 16 01:46:39 1998 by piumarta (Ian Piumarta) on clotho
+# Last edited: 2012-09-15 16:34:23 by piumarta on W530
 
 BEGIN {
-  print "/* This file has been post-processed for GNU C */\n\
-\n\
-";
+  print "/* This file has been post-processed for GNU C */\n";
+  print "\n";
   print "copying first section of file" > "/dev/stderr";
   stage= 0;
 }
@@ -20,8 +19,7 @@
 
 # A prototype for internalPush means the interprer was not inlined
 
-/^sqInt internalPush\(/ \
-{
+/^sqInt internalPush\(/ {
   print "" > "/dev/stderr";
   print "*** interpreter was not inlined: bailing out! ***" > "/dev/stderr";
   print "" > "/dev/stderr";



More information about the Vm-dev mailing list