From: Shamus Hammons Date: Thu, 22 Sep 2016 15:53:23 +0000 (-0500) Subject: Version bump for last patch. :-) X-Git-Tag: v2.1.0~150 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=3c68061b9cd5cc9b67d602f3f5b621efe1e844d8 Version bump for last patch. :-) --- 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__