(handle_directive): Output macro name if dump_names.

From-SVN: r1849
This commit is contained in:
Richard Stallman 1992-08-14 23:15:01 +00:00
parent 72f1215c58
commit 448251cf35

View File

@ -3377,6 +3377,17 @@ handle_directive (ip, op)
check_expand (op, len);
bcopy (buf, op->bufp, len);
op->bufp += len;
} else if (kt->type == T_DEFINE && dump_macros == dump_names) {
U_CHAR *xp = buf;
U_CHAR *yp;
SKIP_WHITE_SPACE (xp);
yp = xp;
while (is_idchar[*xp]) xp++;
len = (xp - yp);
check_expand (op, len + 1);
*op->bufp++ = ' ';
bcopy (yp, op->bufp, len);
op->bufp += len;
}
} /* Don't we need a newline or #line? */