Bug#205050:

2003-08-12 Thread Chris Collins
This may actually be desired effect since stringification works within macros, but not in the files raw. C. -- Chris Collins <[EMAIL PROTECTED]> Advanced Networks Research Group

Bug#205050: cpp-3.3: does not stringify macros

2003-08-12 Thread Chris Collins
Package: cpp-3.3 Version: 1:3.3.1-0pre0 Severity: important Given the following sample: ---BEGIN--- #define FOO 42 "foo" #FOO "blah" ---END--- A correct cpp should output the last line as: "foo" "23" "blah" However, GNU cpp is producing: "blah" #23 "foo" Refer to the gcc cpp documtation: