]> Shamusworld >> Repos - rmac/blobdiff - token.c
Version bump for last commit. :-)
[rmac] / token.c
diff --git a/token.c b/token.c
index 24b7c955d6cbe04591fc6d634453b629ec5be9e2..01c0c4c5d49f6f6bed4839553ff9e9d5537a2f41 100644 (file)
--- a/token.c
+++ b/token.c
@@ -1303,19 +1303,19 @@ dostring:
 
                                        if (obj_format == ALCYON)
                                        {
-                        if (*ln == '.')
-                        {
-                            if ((*(ln + 1) == 'w') || (*(ln + 1) == 'W'))
-                            {
-                                *tk++ = DOTW;
-                                ln += 2;
-                            }
-                            else if ((*(ln + 1) == 'l') || (*(ln + 1) == 'L'))
-                            {
-                                *tk++ = DOTL;
-                                ln += 2;
-                            }
-                        }
+                                               if (*ln == '.')
+                                               {
+                                                       if ((*(ln + 1) == 'w') || (*(ln + 1) == 'W'))
+                                                       {
+                                                               *tk++ = DOTW;
+                                                               ln += 2;
+                                                       }
+                                                       else if ((*(ln + 1) == 'l') || (*(ln + 1) == 'L'))
+                                                       {
+                                                               *tk++ = DOTL;
+                                                               ln += 2;
+                                                       }
+                                               }
                                        }
                                }
                                else