Commit 707beebb by Zack Weinberg Committed by Zack Weinberg

* cpphash.c (special_symbol): Fix thinko in previous commit.

From-SVN: r32399
parent 3fc61836
2000-03-07 Zack Weinberg <zack@wolery.cumb.org>
* cpphash.c (special_symbol): Fix thinko in previous commit.
2000-03-07 Neil Booth <NeilB@earthling.net> 2000-03-07 Neil Booth <NeilB@earthling.net>
* cppexp.c (struct operation, left_shift, right_shift, * cppexp.c (struct operation, left_shift, right_shift,
......
...@@ -899,7 +899,7 @@ special_symbol (hp, pfile) ...@@ -899,7 +899,7 @@ special_symbol (hp, pfile)
while (!ip->nominal_fname && ip != CPP_NULL_BUFFER (pfile)) while (!ip->nominal_fname && ip != CPP_NULL_BUFFER (pfile))
ip = CPP_PREV_BUFFER (ip); ip = CPP_PREV_BUFFER (ip);
if (ip->system_header_p if (ip->system_header_p
&& !cpp_lookup (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15)) && !cpp_defined (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15))
CPP_PUTC_Q (pfile, '0'); CPP_PUTC_Q (pfile, '0');
else else
#endif #endif
......
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