Author: kjs
Date: Thu Oct  4 06:06:52 2007
New Revision: 21825

Modified:
   trunk/compilers/imcc/imcc.y
   trunk/compilers/imcc/imcparser.c

Log:
compilers/imcc:
* remove whitespace.

Modified: trunk/compilers/imcc/imcc.y
==============================================================================
--- trunk/compilers/imcc/imcc.y (original)
+++ trunk/compilers/imcc/imcc.y Thu Oct  4 06:06:52 2007
@@ -1660,14 +1660,14 @@
         if (*chr == '\n') {
             IMCC_INFO(interp)->line--;
         }
-        
+
         IMCC_warning(interp, "error:imcc:%s", s);
         /* don't print the current token if it is a newline */
         if (*chr != '\n') {
             IMCC_warning(interp, " ('%s')", chr);
-        }    
-        IMCC_print_inc(interp);            
-        
+        }
+        IMCC_print_inc(interp);
+
         if (*chr == '\n') {
             IMCC_INFO(interp)->line++;
         }

Modified: trunk/compilers/imcc/imcparser.c
==============================================================================
--- trunk/compilers/imcc/imcparser.c    (original)
+++ trunk/compilers/imcc/imcparser.c    Thu Oct  4 06:06:52 2007
@@ -4718,14 +4718,14 @@
         if (*chr == '\n') {
             IMCC_INFO(interp)->line--;
         }
-        
+
         IMCC_warning(interp, "error:imcc:%s", s);
         /* don't print the current token if it is a newline */
         if (*chr != '\n') {
             IMCC_warning(interp, " ('%s')", chr);
-        }    
-        IMCC_print_inc(interp);            
-        
+        }
+        IMCC_print_inc(interp);
+
         if (*chr == '\n') {
             IMCC_INFO(interp)->line++;
         }

Reply via email to