oops, fix for ## operator was wrong

This commit is contained in:
eck 1990-09-25 13:46:59 +00:00
parent 7b00154c54
commit 5eb4a8d88f

View file

@ -567,7 +567,7 @@ macro2buffer(repl, idf, args)
ptr++;
} while (*ptr != delim || *ptr == '\0');
add2repl(repl, *ptr++);
} else if (func && *ptr == '#') {
} else if (*ptr == '#' && (func || *(ptr+1) == '#')) {
if (*++ptr == '#') {
register int tmpindex;
/* ## - paste operator */