From 3c68061b9cd5cc9b67d602f3f5b621efe1e844d8 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Thu, 22 Sep 2016 10:53:23 -0500 Subject: [PATCH] Version bump for last patch. :-) --- token.c | 8 ++++---- version.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/token.c b/token.c index 124179f..30f529d 100644 --- a/token.c +++ b/token.c @@ -314,10 +314,10 @@ int ExpandMacro(char * src, char * dest, int destsiz) 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++; } diff --git a/version.h b/version.h index 3833664..b8e5adf 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #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__ -- 2.37.2