Merge pull request #399 from ISSOtm/allow_dots

Allow periods to continue macro args
This commit is contained in:
Eldred Habert
2019-08-29 20:09:32 +02:00
committed by GitHub
4 changed files with 40 additions and 9 deletions

View File

@@ -214,7 +214,8 @@ bool AppendMacroArg(char whichArg, char *dest, size_t *destIndex, char **rest)
|| (ch >= '0' && ch <= '9')
|| ch == '_'
|| ch == '@'
|| ch == '#') {
|| ch == '#'
|| ch == '.') {
if (*destIndex >= MAXSYMLEN)
fatalerror("Symbol too long");