Commit 7ea426fe by Richard Kenner

(collect_expansion): Work around enum bug in vax ultrix 4.3 pcc.

From-SVN: r10012
parent a72e508d
...@@ -6026,7 +6026,7 @@ collect_expansion (buf, end, nargs, arglist) ...@@ -6026,7 +6026,7 @@ collect_expansion (buf, end, nargs, arglist)
p++; p++;
concat_sharp_token_type = c; concat_sharp_token_type = c;
if (is_hor_space[*p]) { if (is_hor_space[*p]) {
concat_sharp_token_type++; concat_sharp_token_type = c + 1;
p++; p++;
SKIP_WHITE_SPACE (p); SKIP_WHITE_SPACE (p);
} }
...@@ -6040,7 +6040,7 @@ collect_expansion (buf, end, nargs, arglist) ...@@ -6040,7 +6040,7 @@ collect_expansion (buf, end, nargs, arglist)
exp_p--; exp_p--;
stringify_sharp_token_type = c; stringify_sharp_token_type = c;
if (is_hor_space[*p]) { if (is_hor_space[*p]) {
stringify_sharp_token_type++; stringify_sharp_token_type = c + 1;
p++; p++;
SKIP_WHITE_SPACE (p); SKIP_WHITE_SPACE (p);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment