Commit 6fe349a9 by Neil Booth Committed by Neil Booth

cpplib.c (_cpp_handle_directive): Use buffer->was_skipping, not pfile->skipping (== 0).

        * cpplib.c (_cpp_handle_directive): Use buffer->was_skipping,
        not pfile->skipping (== 0).

From-SVN: r39108
parent b1117741
2001-01-18 Neil Booth <neil@daikokuya.demon.co.uk>
* cpplib.c (_cpp_handle_directive): Use buffer->was_skipping,
not pfile->skipping (== 0).
2001-01-17 Nick Clifton <nickc@redhat.com>
* config/rs6000/rs6000.c: Add prototypes for {init|free}_
......
......@@ -349,7 +349,7 @@ _cpp_handle_directive (pfile, indented)
}
}
}
else if (dname.type != CPP_EOF && ! pfile->skipping)
else if (dname.type != CPP_EOF && ! buffer->was_skipping)
{
/* An unknown directive. Don't complain about it in assembly
source: we don't know where the comments are, and # may
......
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