]> Shamusworld >> Repos - rmac/commitdiff
Version bump for last patch. :-)
authorShamus Hammons <jlhamm@acm.org>
Thu, 22 Sep 2016 15:53:23 +0000 (10:53 -0500)
committerShamus Hammons <jlhamm@acm.org>
Thu, 22 Sep 2016 15:53:23 +0000 (10:53 -0500)
token.c
version.h

diff --git a/token.c b/token.c
index 124179fc8013e38372bc829c7632fb7895dd9180..30f529d018b95084e621a18c99cf272df071e5b7 100644 (file)
--- a/token.c
+++ b/token.c
@@ -314,10 +314,10 @@ int ExpandMacro(char * src, char * dest, int destsiz)
                        if (dst >= edst)
                                goto overflow;
 
                        if (dst >= edst)
                                goto overflow;
 
-            // Skip comments in case a loose @ or \ is in there
-            // In that case the tokeniser was trying to expand it.
-            if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/')))
-                goto skipcomments;
+                       // Skip comments in case a loose @ or \ is in there
+                       // In that case the tokeniser was trying to expand it.
+                       if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/')))
+                               goto skipcomments;
 
                        *dst++ = *s++;
                }
 
                        *dst++ = *s++;
                }
index 38336642307e3e7c21d12951998d00950a526f81..b8e5adf00289dc1d192f333f62c87807765cabbf 100644 (file)
--- a/version.h
+++ b/version.h
@@ -13,6 +13,6 @@
 
 #define MAJOR   1              // Major version number
 #define MINOR   4              // Minor version number
 
 #define MAJOR   1              // Major version number
 #define MINOR   4              // Minor version number
-#define PATCH   18             // Patch release number
+#define PATCH   19             // Patch release number
 
 #endif // __VERSION_H__
 
 #endif // __VERSION_H__