wrong number of parameters no longer is an error.

This commit is contained in:
ceriel
1987-01-08 12:38:05 +00:00
parent 61158d4693
commit 0c5feb7493
2 changed files with 3 additions and 3 deletions

View File

@@ -156,7 +156,7 @@ macro2buffer(idef, actpars, siztext)
/* copy the text of the actual parameter
into the replacement text
*/
for (p = actpars[n - 1]; p && *p; p++) {
for (p = actpars[n - 1]; *p; p++) {
text[pos++] = *p;
if (pos == size)
text = Srealloc(text, size += RTEXTSIZE);